Viewing 15 posts - 2,416 through 2,430 (of 3,957 total)
This looks strangely familiar to a product I ran across some years back. Unfortunately I can't remember the name of it. Too long ago or I'm getting old...
November 30, 2012 at 2:18 am
You need a little help getting help. 🙂
Below is a consumable version of your source data:
;WITH a ([Record Number], [Status], [Column Name], [Date Started], DateCompleted) AS (
...
November 30, 2012 at 2:10 am
This resolves the simple case you've given us, however I suspect it may not be the solution to your problem.
;WITH CTE AS (
SELECT AgentNum
...
November 30, 2012 at 1:41 am
SQL Kiwi (11/30/2012)
dwain.c (11/30/2012)
November 30, 2012 at 12:47 am
SQL Kiwi (11/29/2012)
dwain.c (11/29/2012)
Paul - Thanks for stopping by and making the CLR suggestion. Haven't seen you posting much of late so seeing your name pop up surprised me.
I...
November 30, 2012 at 12:13 am
Paul - Thanks for stopping by and making the CLR suggestion. Haven't seen you posting much of late so seeing your name pop up surprised me.
I'm a bit CLR-challenged...
November 29, 2012 at 11:36 pm
mickyT (11/29/2012)
dwain.c (11/29/2012)
You may wish to review this new article:
http://www.sqlservercentral.com/articles/String+Manipulation/94365/
It provides a good utility function for solving this case and many other similar ones....
November 29, 2012 at 11:31 pm
Post deleted - SSC hung and posted this one to the wrong thread.
November 29, 2012 at 11:27 pm
Hi Phil - allow me to propose something for you.
DECLARE @RowCount INT
DECLARE @IDs TABLE
(InvoiceId int not null
,BookingId int not null)
INSERT INTO...
November 29, 2012 at 11:25 pm
mickyT (11/29/2012)
dwain.c (11/29/2012)
You may wish to review this new article:
http://www.sqlservercentral.com/articles/String+Manipulation/94365/
It provides a good utility function for solving this case and many other similar ones....
November 29, 2012 at 11:23 pm
To all who participated in this thread:
You may wish to review this new article:
http://www.sqlservercentral.com/articles/String+Manipulation/94365/
It provides a good utility function for solving this case and many other similar ones. Thanks...
November 29, 2012 at 10:10 pm
fregatepallada (11/29/2012)
IMHO this task would be better implemented in CLR UDF rather than in pure T-SQL.CLR UDF easily allows to apply REGULAR EXPRESSIONS.
Just a thought.
So how about an example?
I'd...
November 29, 2012 at 10:10 pm
Alan.B (11/29/2012)
I would have been delighted to propose a looping solution...
November 29, 2012 at 7:01 pm
And finally a reply to all that have replied on this discussion thread.
My thanks to all of you for your comments and taking the time to read the article. ...
November 29, 2012 at 5:50 pm
Jeff Moden (11/29/2012)
November 29, 2012 at 5:46 pm
Viewing 15 posts - 2,416 through 2,430 (of 3,957 total)