Viewing 15 posts - 2,776 through 2,790 (of 7,498 total)
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
digdave7 (9/27/2010)
September 28, 2010 at 1:03 am
sandy-833685 (9/27/2010)
But its not hardcoded its an value which is stored in variable which is having a datatype as datetime. and after going through certain select and execution stored procedure.And...
September 27, 2010 at 12:57 pm
sandy-833685 (9/27/2010)
And when i try to execute the select statement with convert like
select * from tablename
where convert(varchar(10),time,103)<'06/06/2010'
as i...
September 27, 2010 at 12:53 pm
I'm glad it has been solved using the page method.
I've been confronted a couple of times with this issue and I've been able to filter the troublesome rows using this...
September 27, 2010 at 12:13 pm
it's a petty for us all, but "disable trigger" is not a ddl statement !
So you cannot capture it with a ddl trigger.
We have the same issue as you have,...
September 27, 2010 at 11:52 am
Viewing 15 posts - 2,776 through 2,790 (of 7,498 total)