Viewing 15 posts - 4,486 through 4,500 (of 7,505 total)
Make sure you understand it !
Then play around and test a bit !
Then make a "plan of attack" for production :w00t:
September 19, 2008 at 7:28 am
- don't use xp_cmdshell ! unless there is no way around.
- You could launch a sqlagent job to process a simple "move c:\x.txt to y:\"
- as already stated SSIS can...
September 19, 2008 at 7:22 am
- Please post version details (@@version)
- Did you apply cumulative hotfixes to your sp2 ?
- do you rebuild indexes on a regular basis ,
- did you add the deadlock traces...
September 19, 2008 at 7:20 am
I'm used to that :w00t:
1) married
2) dba
:D:):P:w00t::hehe:
September 19, 2008 at 5:27 am
There is this very nice and eye-opening article concering ranges ...
Called "The "Numbers" or "Tally" Table: What it is and how it replaces a loop."
September 19, 2008 at 3:40 am
Please read this little guideline to get the info you want asfast as you want.
Forum Etiquette: How to post data/code on a forum to get the best help
http://www.sqlservercentral.com/articles/Best+Practices/61537/
No problem...
September 19, 2008 at 12:54 am
What version are you on
Select Serverproperty( 'BuildClrVersion' ) as BuildClrVersion
, Serverproperty( 'Collation' ) as Collation
, Serverproperty( 'CollationID' ) as CollationID
, Serverproperty( 'ComparisonStyle' )...
September 19, 2008 at 12:39 am
I'm still inivestigating the cause for this issue, but I suspect the automatic updates just ruined my 24/7 (MOM) db server. :crazy:
http://www.sqlservercentral.com/Forums/Topic571088-146-1.aspx
I must admit, at the plant where I have...
September 18, 2008 at 11:59 pm
and make the
... do your updates ...
part distinctive !
(so you don't update the same 1000 rows every time and again...
September 18, 2008 at 2:38 pm
declare @startdate datetime, @enddate datetime
SELECT @startdate = dateadd(dd, (-6 - DATEPART (dw, getdate())),DATEADD(dd,DATEDIFF(dd,0,getdate()),0))
, @enddate = DATEADD(dd,DATEDIFF(dd,0,getdate())+ 1 ,0)
--print...
September 18, 2008 at 7:10 am
are you using the same service account for all the instances ?
if not, you need to grant loging for all service accounts to all the instances
September 18, 2008 at 7:04 am
SELECT object_name(i.object_id) as Table_Name
, i.name as Index_Name
, i.index_id
, STATS_DATE(i.object_id, i.index_id) as Statistics_Date
FROM sys.objects o
INNER JOIN sys.indexes i
ON o.object_id = i.object_id
order by Table_Name, i.index_id ;
GO
September 17, 2008 at 1:55 pm
You can also inspect the last time stats have been updated :
SELECT i.name as Index_Name
, STATS_DATE(i.object_id, i.index_id) as Statistics_Date
FROM sys.objects o
INNER JOIN sys.indexes i
ON o.object_id = i.object_id;
GO
September 17, 2008 at 1:29 pm
here's another test with the timestamp datatype:
/****** test script timestamp ******/
set nocount on
go
/*
@@DBTS returns the last-used timestamp value of the current database.
A new timestamp value is generated when a...
September 17, 2008 at 12:34 pm
I'm sorry for the xpost.
I originally posted in the wrong forum (sql2005)
Please reply to the sql2000 forum at
http://www.sqlservercentral.com/Forums/Topic571090-48-1.aspx
September 17, 2008 at 9:24 am
Viewing 15 posts - 4,486 through 4,500 (of 7,505 total)