Viewing 15 posts - 6,541 through 6,555 (of 7,467 total)
from BOL :
NO_LOG | TRUNCATE_ONLY
Removes the inactive part of the log without making a backup copy of it and truncates the log. This option frees space. Specifying a...
July 12, 2005 at 12:04 am
July 11, 2005 at 6:44 am
try this :
BEGIN TRANSACTION
DECLARE @JobID BINARY(16)
DECLARE @ReturnCode INT
SELECT @ReturnCode = 0
IF (SELECT COUNT(*) FROM msdb.dbo.syscategories WHERE name = N'[Uncategorized (Local)]') < 1
...
July 8, 2005 at 8:04 am
we only reboot when needed (upgrade) or when e.g. a plant's productionprocess is in maintenance, we take the change to check the server thoroughly, perform systems-maintenance and reboot.
Currently our longest...
July 8, 2005 at 12:26 am
maybe you can have a first glimp using DBCC INPUTBUFFER (spid)
Offcourse profiler will be your main analysis tool.
July 7, 2005 at 3:04 am
- did you take a look a the statistics ? (dbcc showcontig, sp_spaceused... )
- you might use QA to check the queries using the option "display estimated execution plan" and...
July 7, 2005 at 2:55 am
you can say that again !
truncate_only seemed so easy, but making the new fullbackup has been forgotten many times
July 7, 2005 at 12:08 am
so his master-backup was older than one month ??
Define new backup Schedules using sql-backups and using sqlagent.
BEGIN TRANSACTION
DECLARE @JobID BINARY(16)
DECLARE...
July 6, 2005 at 5:37 am
please give him some time, the updateusage and sp_updatestatst will also take some time, then reruning the queries and some analisys also need more than 15 minutes
July 6, 2005 at 1:46 am
after you load, did you run
use yourdb
go
dbcc updateusage(0) with count_rows
go
sp_updatestats
go
Even if you have autostats on, this is needed once in a while, espacialy after full loads or heavy delete/insert...
July 6, 2005 at 1:19 am
just my 2ct.
- Also in desaster cases, first make a copy of what you (still) have !
- What made you (all drp-actors) decide...
July 6, 2005 at 12:35 am
... The indexes and calculation procedures have not changed much ....
Did you change clustering indexes ?
they influence the actual storage order of rows at the datalevel
and...
July 6, 2005 at 12:25 am
don't forget to download the awe-fix !
July 5, 2005 at 12:31 am
- With sqlserver, you can revoke builtin\administators from the logins of your server. Be carefull with that, because it will need your services to use a windows-account ! Make sure...
July 1, 2005 at 12:24 am
Viewing 15 posts - 6,541 through 6,555 (of 7,467 total)