Viewing 15 posts - 15,421 through 15,435 (of 26,486 total)
Okay Steve, I find it admirable that you will stand by your code. Unfortunately, I took that as a challenge and wrote my own inline TVF that generates the...
June 3, 2010 at 12:17 am
Try here:
[Url]http://msdn.microsoft.com/en-us/library/ms187476(SQL.90).aspx[/url] and
June 2, 2010 at 3:56 pm
Steven James Gray (6/2/2010)
Lynn Pettis (6/2/2010)
My complaint with the code is the use...
June 2, 2010 at 1:38 pm
What most people are saying is that this approach isn't necessarily the correct approach in a DW environment.
My complaint with the code is the use of a recursive CTE. ...
June 2, 2010 at 1:14 pm
If you would really like some help, may I suggest that you post the DDL (CREATE Table statement(s)) for the table(s) involved, sample data (as a series of INSERT INTO...
June 1, 2010 at 9:20 pm
Not too difficult for someone who hasn't read his blog as well. I just pay close attention to others more versed in log files that also post here on...
June 1, 2010 at 1:20 am
Its lack of scalability is its biggest problem. A recursive CTE is still RBAR (a Modenism for Row By Agonizing Row).
June 1, 2010 at 1:17 am
Gianluca Sartori (6/1/2010)
Tom.Thomson (5/31/2010)
GilaMonster (5/30/2010)
June 1, 2010 at 1:12 am
Using a recursive CTE to generate what is basically a dynamic tally table except returning a dynamic calendar/time table is not scalable.
For an article on dynamic tally tables, please read...
June 1, 2010 at 1:05 am
This is how your RESTORE should look:
RESTORE DATABASE [AdventureWorksDW]
FROM DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\AdventureWorksDW.bak'
WITH FILE = 1,
MOVE N'AdventureWorksDW_Data' TO N'D:\Databases\UserDB\AdventureWorksDW_Data.mdf',
...
June 1, 2010 at 12:49 am
urzsuresh (5/30/2010)
Its was nice. But one clariffication. here Starttime and endtime is nchar(10) type.
i need to get the result without using any functions.
I need another...
May 31, 2010 at 12:36 am
Had to think this one through, and managed to get it right! Good question!
May 31, 2010 at 12:09 am
Though worded differently, this looks like a cross post. Please post any answers here.
May 30, 2010 at 2:12 pm
Jeff Moden (5/29/2010)
May 30, 2010 at 1:56 pm
CirquedeSQLeil (5/28/2010)
bteraberry (5/28/2010)
May 28, 2010 at 4:01 pm
Viewing 15 posts - 15,421 through 15,435 (of 26,486 total)