Viewing 15 posts - 256 through 270 (of 330 total)
bruce.trimpop (4/14/2009)
Bruce
Here is the SQL i used on 2000 to re-create the data and tables - some mods were required, so hope you can check.
Is it possible that you...
April 14, 2009 at 3:49 pm
Andy DBA (4/14/2009)
April 14, 2009 at 2:16 pm
bruce.trimpop (4/14/2009)
Unfortunately, the "readily consumable format" is a problem. Packaging something up that would cover all or most of the critical functional variations would be a bit time consuming. Thanks...
April 14, 2009 at 11:40 am
bruce.trimpop (4/14/2009)
I put forth a real world problem to that person that I could find no way to accomplish without using a cursor. I never heard back from them
I don't...
April 14, 2009 at 8:14 am
sushila (4/14/2009)
April 14, 2009 at 7:46 am
Gaby
I have to admit - I wasn't too kind on your original article. BUT - it did spawn what was possibly the most interesting thread ever on SSC. You should...
April 14, 2009 at 7:09 am
Peter Hansen (4/14/2009)
April 14, 2009 at 5:39 am
Looking forward to part 2, sir. 😀
If you want an extra sounding board, let me know.
April 14, 2009 at 3:48 am
Jeff Moden (1/13/2009)
...or just dump it into some dynamic SQL.
That was pretty much my take on it 🙂
Code above - OP seems to have gone AWOL though!
January 13, 2009 at 4:39 pm
So, collectively we fixed a logic funny for you, and made it quicker to boot.
Go team! 😛
Ultimate props to Jeff on this one - I think the main key...
January 9, 2009 at 1:41 pm
John Rowan (1/9/2009)
I am not aware of it being depricated. It exists in SQL Server 2008 as well.
It's not deprecated, but it is a cursor under the hood. AFAIK.
You...
January 9, 2009 at 1:38 pm
Another way, no cursor but still not amazing.
declare @sql varchar(MAX)
set @sql = ''
create TABLE #temp (ID INT IDENTITY (1,1) PRIMARY KEY CLUSTERED, ServerName sysname, DBName sysname,...
January 8, 2009 at 6:36 pm
using convert with a specific style code (112 for example) give unambiguous results.
January 8, 2009 at 6:24 pm
Viewing 15 posts - 256 through 270 (of 330 total)