Viewing 15 posts - 301 through 315 (of 395 total)
well, basically output the counter you want to monitor to a CSV file format.
Later files can then be imported into database PerfmonCounterLogs using DTS, for further...
March 18, 2005 at 10:40 am
...Latches are short term light weight synchronization objects. Latches are not held for the duration of a transaction. If high, check PERFMON for memory pressure, disk bottlenecks. Did you perfrom benchmarking?...
March 17, 2005 at 1:21 pm
it is correct for the tempdb. Besides, if you have a lot of tempdb t/a's you might want to consider adding an extra .mdf ( or.ndf) file to it.
March 17, 2005 at 12:02 pm
Check if you have enough space for tempdb as well as: There is a database option called "torn page detection" that can be turned on and off at the database...
March 16, 2005 at 11:57 am
Or:
select max(employeeId) from employees
where employeeId <> (select max(employeeId) from employees)
March 16, 2005 at 11:44 am
Do that in 2 steps:
Backup LOG YourDB WITH NO_LOG
GO
DBCC SHRINKFILE ('YourDB_Log',TRUNCATEONLY)
GO
March 15, 2005 at 11:46 am
You may want to explore SQL Litespeed. You will be able not only save the time, while doing backup(compare to the regular by MS), but also you will be able to...
March 10, 2005 at 12:07 pm
Check if it was reflected in SQL Server Error Log. It should. And then you can use master..xp_readerrorlog to check error log for whatever info you need.
March 5, 2005 at 2:32 pm
Check another link:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=146326
March 3, 2005 at 7:35 pm
Older version of SQL Litespeed doesn't allow to restore from network. It is a known issue (at least we got a confirmation on that from vendor).
With new version 2005...
March 1, 2005 at 12:05 pm
AFAIK there are 2 stored proc (by MS) which do that for you. So you would have the exact clone of your database without data. Unfortunately, I used it last time...
February 18, 2005 at 11:54 am
I would also add the status of a db, like: Offline/Suspect, etc
February 15, 2005 at 11:40 am
You can either use ping servername or use OSQL -L for accomplishing that.
Smth like that:
create table #t (Pingoutput varchar(255) null)
Declare @cmdM varchar(30)
Declare @servername varchar(80)
Set...
February 10, 2005 at 12:46 pm
Viewing 15 posts - 301 through 315 (of 395 total)