Viewing 15 posts - 2,776 through 2,790 (of 7,504 total)
There are multiple "split string" tvf functions you can find at SSC. Just use its search feature.
Just add an identity column to the result table and join on that.
October 10, 2010 at 9:04 am
Congratulations SSC !
Thank you for providing _the_ reference platform for SQLserver and the means to learn on a daily basis !
October 9, 2010 at 12:18 pm
There are multiple articles at SSC that may be of your interest:
- Generating Missing Dates and Numbers By Jacob Sebastian http://www.sqlservercentral.com/articles/Datetime+Manipulation/61822/
- The "Numbers" or "Tally" Table: What it is and...
October 6, 2010 at 1:59 pm
I mostly use SQLServer Management Studio to get to my SQLServers.
But I'm a dba and rarely developer.
With regards to your Access conversion:
- Keep in mind Microsoft has a tool that...
October 6, 2010 at 7:16 am
raid is not mandatory !
However .... if you have no raid volume for your sqlserver databases, it is game over if you lose the drive, where with e.g. a raid1...
October 5, 2010 at 3:47 pm
george sibbald (10/4/2010)
ALZDBA (10/4/2010)
Did they benchmark TVF vs scalar functions vs CLR functions for this case ?
🙂 ah such an optimist! I do not think so but if it...
October 4, 2010 at 6:30 am
Did they benchmark TVF vs scalar functions vs CLR functions for this case ?
October 4, 2010 at 5:44 am
Thank you for the feedback.
Can you provide some performance data of their tests and chosen solution ?
October 4, 2010 at 5:02 am
Grant Fritchey (10/2/2010)
October 2, 2010 at 8:59 am
What your are trying to do is a piecemeal restore.
(ent edtn / dev edtn needed )
October 1, 2010 at 1:14 pm
check Restore headeronly in BOL.
It provides the info you need.
You can use it this way:
if (select isnull( object_id(N'tempdb.[dbo].[#Tmp_BackupHeaders]'), 0)) <> 0
begin
DROP table #Tmp_BackupHeaders
end
-- versie SQL2K5 sp2
create...
October 1, 2010 at 1:00 pm
please post your configuration settings "min server memory" and "max server memory".
On every 64-bit os, you should set the max server memory or else it may grab all ram.
(the...
October 1, 2010 at 12:48 pm
If you're going for the choice to copy the table to a staging table scenario, keep in mind to re-link all objects that are related to or have been related...
September 30, 2010 at 11:40 am
Adi Cohn-120898 (9/28/2010)
September 28, 2010 at 2:52 am
How is this for a coincidence ... just today ... converting another db to sql2005 .... data_purity messages ....
my query only captured 7 rows of the 68 rows reported...
September 28, 2010 at 2:15 am
Viewing 15 posts - 2,776 through 2,790 (of 7,504 total)