Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 how to configure fnparselist

Author  Topic 

Stephen Kligge
Starting Member

4 Posts

Posted - 2009-02-18 : 08:27:14
I have the fnparselist, but do not know how to configure it to use data from my database instead of the fnparselist when you enter informaiton. I also have 7 fields that need to be seperated, and 3 that do not, but want to get individual records for everything.

If anyone knows how to configure the fnparselist to do this I would greatly appreciate it. The tables are listed below

employee number (not seperated field)
date (not seperated field)
Warehouse (not seperated field)
job code( multiple, seperated)
timein (multiple seperated)
timeout(multiple seperated)
cases (multiple seperated)
lines (multiple seperated)
lunch (multiple, seperated)
dociID (reference to another table, not a seperated field)

sakets_2000
Master Smack Fu Yak Hacker

1472 Posts

Posted - 2009-02-18 : 08:34:03
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=102853
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2009-02-18 : 08:38:24
something like:-

SELECT *
FROM cases c
CROSS APPLY dbo.ParseValues(c.field,'delimiter')f

parsevalues can be found here

http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=113563
Go to Top of Page
   

- Advertisement -