Viewing 15 posts - 676 through 690 (of 1,473 total)
HowardW (9/14/2009)
September 14, 2009 at 11:37 am
srathna77 (9/14/2009)
Sorry sir i cannot give data. attached is the ouput document.
As Lynn mentioned, we only want *sample* data. So if you have a Name (Like the one in...
September 14, 2009 at 11:30 am
I think part of your problem is that you're basing the weekno off of getdate, when you aren't using calendar years to represent what the week numbers should be. ...
September 14, 2009 at 10:46 am
vishal.gamji (9/13/2009)
September 14, 2009 at 7:58 am
Bob Hovious (9/12/2009)
But in my opinion you really should make the effort to cut-and-paste your question here at...
September 13, 2009 at 10:16 am
I think he was just advocating testing things yourself and not always taking other people's word for it, not taking a side on this issue in particular. IIRC, 1 and...
September 12, 2009 at 7:25 am
Yeah, this script is only supplying the table name, not the fully qualified servername.databasename.schema.tablename.
You can usually get away with not specifying the first 3, unless you're attempting to...
September 11, 2009 at 3:30 pm
Keep in mind that because the sp uses dynamic SQL, any wildcards you send in with your text string should work as wildcards.
IE. EXEC UGLYSEARCH '1234%5678'
or
EXEC UGLYSEARCH '1234%[0-9][0-9][0-9][0-9]%[0-9][0-9][0-9][0-9]%5678'
etc. etc.
Also, I...
September 11, 2009 at 2:40 pm
Understood. Sorry if I sounded preachy, just had to check. Best of Luck in your search, unfortunately I have no such script handy.
September 11, 2009 at 11:46 am
Some words come to mind.
Cursor. Dynamic SQL. Slow. Why?
You can use the field names from the information_schema view, use it as a cursor and dynamic sql to...
September 11, 2009 at 11:17 am
I've read that BOL article several times, maybe one of these times I'll actually remember what it says the next day ;-).
I still don't see anything that would...
September 11, 2009 at 11:05 am
You can use the same evaluation method to decide whether or not to increment the variable for your MessageID.
DECLARE @ID INT
SET @ID = 0
Update #tblCompl
SET Explanation = CASE
WHEN CP<=Guide AND...
September 11, 2009 at 10:22 am
Paul White (9/11/2009)
Garadin (9/11/2009)
September 11, 2009 at 10:13 am
Here's the other thread I mentioned:
http://www.sqlservercentral.com/Forums/Topic785062-338-1.aspx
The datatype thing could be mostly academic. With SQL2005 he could probably get away with just casting everything as varchar(max) and calling it a...
September 11, 2009 at 10:07 am
Paul White (9/11/2009)
Garadin (9/11/2009)
September 11, 2009 at 10:03 am
Viewing 15 posts - 676 through 690 (of 1,473 total)