Viewing 15 posts - 421 through 435 (of 2,387 total)
SQL Server creates and executes a parallel plan for a query only when the estimated cost to execute a serial plan for the same query is higher than the value...
June 16, 2004 at 8:09 am
Check BOL "Using the inserted and deleted Tables"
June 16, 2004 at 7:38 am
Index ID 255 indicates there is a text/image column in the table. It maybe corrupt.
bcp sysindexes out
truncate table sysindexes
bcp sysindexes in
Before you do that, backup your database and set direct...
June 16, 2004 at 7:28 am
If you can run dbcc dbreindex, run it to your tables and then shrink the database. One of difference is that DBCC INDEXDEFRAG is online operation and DBCC DBREINDEX will...
June 15, 2004 at 9:37 pm
Just wondering, Did you refresh the databases from EM when you saw database was in 'loading' status?
June 15, 2004 at 9:33 pm
Create new database with same name, stop SQL Server, replace the MDF file from original database file and restart SQL Server to see whether your database is back in suspect...
June 15, 2004 at 9:24 pm
What precentage free spaces do you expect after the database shrink? It shrinks the size of the data files in the specified database to desired percentage of free space left...
June 15, 2004 at 8:55 pm
Backup log to a share folder which can be accessed by both servers using UNC path.
backup log pubs to disk = '\\servername\foldername\pubs_log_20040610.bak'
June 10, 2004 at 8:23 am
SELECT * FROM db1.dbo.UserObject WHERE u_logon_name NOT IN (SELECT * FROM db2.dbo.UserObject)
SELECT * FROM db2.dbo.UserObject WHERE u_logon_name NOT IN (SELECT * FROM db1.dbo.UserObject)
June 10, 2004 at 8:19 am
What service account do you use to run SQL Serevr and Agent services?
Try to grant Windows NT group/user 'DTSRV\ServiceSQLServer' to access SQL Server with proper permissions. Or change the job...
June 10, 2004 at 8:14 am
Use performance monitor to see how I/O subsystem performs when both SQL Server and Exchange are busy, also CPU and memory resources. That will give you ideas whether you should...
June 10, 2004 at 8:11 am
sysreferences table contains mappings of FOREIGN KEY constraint definitions to the referenced columns and OBJECTPROPERTY returns information about objects.
select "select ObjectProperty(OBJECT_ID('" + object_name(constid) + "'), 'CnstIsDisabled')" from sysreferences will generate...
June 8, 2004 at 10:17 am
SELECT TOP 10 used AS "# of Pages", rows AS "# of Rows", (used * 8) / 1024 AS "# of MB", object_name(id) AS TableName
FROM sysindexes WHERE indid...
June 7, 2004 at 8:13 pm
Viewing 15 posts - 421 through 435 (of 2,387 total)