Viewing 15 posts - 691 through 705 (of 2,387 total)
Run performance monitor to see whether there are too much workloads on the I/O disks your database reside on. I highly suspect that.
Increase the "cost threshold for parallelism" from 5...
January 12, 2004 at 12:46 pm
Depend on how your database be backed up. If database was backed up by using T-SQL backup statement, you have to perform the restoration. If the database files (MDF and...
January 12, 2004 at 12:35 pm
What client tools are you referring to? If you have SQL Server license, you can use SQL Server tools like QA and EM for your MSDE.
January 12, 2004 at 12:31 pm
Run select * from sysprocesses where waittime > 0 order by waittime desc to see what SQL Server are waitting for.
How many CPUs do you have? Do you enable Parallel...
January 12, 2004 at 12:26 pm
I am wondering there are some large queries running. Check all your schedule jobs and run Profiler to see which queries consume CPUs time.
Please post "select * from sysprocesses where...
January 12, 2004 at 12:23 pm
Distribution statistics may also be maintained for unindexed columns. These can be defined manually using the CREATE STATISTICS statement or created automatically by the query optimizer. Statistics on unindexed columns...
January 12, 2004 at 12:08 pm
http://support.microsoft.com/default.aspx?scid=kb;en-us;297104&Product=sql2k
Could there be mulitiple backup files you have to restore together?
January 12, 2004 at 11:56 am
I tested similar queries of yours with 500000 records and do not see any differences.
SELECT TOP 500000 *
FROM webproxylog
WHERE logdate BETWEEN CONVERT(VarChar(10),Getdate()-100,126) AND CONVERT(VarChar(10),Getdate(),126)
SELECT TOP 500000 *
FROM webproxylog
WHERE (logdate =...
January 9, 2004 at 9:37 am
You can backup the currently active transaction log even if the database file is damaged, provided that the transaction log file is still accessible.
Backup Log <database_name> to Disk = <device_name>...
January 9, 2004 at 9:18 am
Don't do that.
Grant the new windows local group with EM or sp_addlogin.
January 9, 2004 at 7:33 am
Post that statement which give you this error message here.
January 8, 2004 at 3:12 pm
Ok. Paste your script into QA, Run it, get error, click the error and it will tell you which statement is wrong. Post that statement here.
January 8, 2004 at 2:45 pm
"Server: Msg 15009, Level 16, State 1, Procedure sp_help, Line 71 The object 'sp_schedule_status_reset' does not exist in database 'master'"
Above error message indicates that you have error at line 71...
January 8, 2004 at 2:30 pm
How do you rebuild the indexes? Run create index command or dbcc dbreindex? It is true the log space usage will be minimized by setting recovery model to "bulk-logged" if...
January 8, 2004 at 2:25 pm
Viewing 15 posts - 691 through 705 (of 2,387 total)