Viewing 15 posts - 4,141 through 4,155 (of 7,496 total)
did you free the db's proccache after the reindex ?
Possibly the old cached plans nolonger serve optimal with the new statistics and organisation.
January 15, 2009 at 10:39 am
Mahi (1/14/2009)
January 14, 2009 at 2:47 pm
raymond.lew (1/14/2009)
Hello, I have an identity problem.
Who doesn't every once in a while 😉
Maybe this helps you figure out what's going (wr)on(g).
SELECT @@VERSION
GO
IF OBJECT_ID ('id_test') IS NOT...
January 14, 2009 at 2:31 pm
GSquared (1/14/2009)
January 14, 2009 at 2:10 pm
SELECT A.SOLD_TO_CUST_ID
, C.NAME1
, DATEDIFF(DAY, ( CONVERT(CHAR(10), B.STATUS_DT, 121) ), GETDATE()) as DtDiff
...
January 14, 2009 at 6:40 am
Could you also post your version number of SQL2005 ?
Select @@version
-- or
Select Serverproperty( 'ProductVersion' ) as ProductVersion
, Serverproperty( 'ProductLevel' ) as ProductLevel
, Serverproperty( 'ResourceLastUpdateDateTime' )...
January 14, 2009 at 3:39 am
here's a starter :
- simplyfied http://www.extremeexperts.com/sql/articles/BestPractices.aspx
- http://vyaskn.tripod.com/sql_server_administration_best_practices.htm
January 14, 2009 at 12:22 am
Jeff Moden (1/13/2009)
Holy moly... you are a very patient human... 470 hours... 19.58 days. And to think I...
January 14, 2009 at 12:18 am
If you cannot fine any reasonable / related message in sqlservers errorlog,
I would suggest to at least run DBCC CheckDB (for the db if you know it, if you...
January 14, 2009 at 12:07 am
IMO your variable is declared to small !! char(10) seems rather small.
Be sure to match you declared size to the size of the column in de table ddl.
DECLARE @Driver_Name...
January 13, 2009 at 11:59 pm
a log file can only shrink up to the last virtual log file it has in use.
This script will write dummy data to the log file, until it's first VLF...
January 13, 2009 at 11:41 pm
Can you check it restrictions apply to the number of user connections ?
/* "user connections" is an advanced config setting
enable show advanced options */
exec sp_configure 'show advanced...
January 13, 2009 at 7:41 am
Feedback:
I've upgraded the dev servers to SP3 and got the approval to re-test it in cooperation with one of our biztalk devs.
After I activated the "old" logon trigger again, the...
January 13, 2009 at 6:19 am
Did you read:
-SQL2005 http://msdn.microsoft.com/en-us/library/ms188706(SQL.90).aspx
-SQL2008 http://msdn.microsoft.com/en-us/library/ms188706.aspx
- http://www.sqlservercentral.com/articles/SQL+Server+2005/61765/
- http://www.sqlservercentral.com/articles/Development/3144/
- http://msdn.microsoft.com/en-us/library/ms345146.aspx
- http://www.sqlservercentral.com/Forums/Topic414210-338-1.aspx
- http://www.sqlservercentral.com/Forums/Topic623669-360-1.aspx
also keep in mind, if partitioning an existing table, you may still end up with DOWN TIME for your application(s)...
January 13, 2009 at 5:30 am
As always, play it safe and start with a full backup scenario of ALL your databases (including systems databases !)
If all backups completed successfully, only then start the sp3 exe.
Read...
January 12, 2009 at 12:58 pm
Viewing 15 posts - 4,141 through 4,155 (of 7,496 total)