Viewing 15 posts - 856 through 870 (of 1,161 total)
You will be able to restore system databases. You may refer this article for getting started.
August 5, 2010 at 6:27 am
You may use the "MAX_ROLLOVER_FILES" option while creating the audit. If it is set to UNLIMITED then the files will not be rolled over.
August 5, 2010 at 5:54 am
When you are creating the maintenance plan in SQL 2000 Enterprise Manager the "Reorganize data and index pages" option under the Update Data Optimization Information, is a little tricky.
When...
August 5, 2010 at 5:40 am
Even I could find that on some of the production servers. As Gail rightly mentioned they are system spids.
August 5, 2010 at 5:04 am
You may find this article useful in resolving deadlocks.
August 5, 2010 at 4:54 am
The easiest way to recover a lost database is to RESTORE it from previous backups.
August 4, 2010 at 11:43 pm
Yes you cannot. Here is what Microsoft documentation states
Indicates that SQL Server will convert the original text of the CREATE PROCEDURE statement to an obfuscated format. The output of the...
August 4, 2010 at 11:10 pm
As suggested, I feel Snapshot Replication meets your requirements.
August 4, 2010 at 11:06 pm
Rebooting a Server will free up the resource utilization on the box whereas restarting the instance will do the same for the SQL Server instance.
Not sure though, how it...
August 4, 2010 at 11:00 pm
Get the SPID of your session and DBCC INPUTBUFFER of your session ID should give you the details.
August 4, 2010 at 10:52 pm
If you have the resources, you may also spread the data files of those databases on different LUNs to boost performance.
August 4, 2010 at 10:50 pm
You may find this bulletin useful.
August 4, 2010 at 10:47 pm
You may create table and insert the result into it. Here is an example
create table xpinfo
(
column1 varchar(500),
column2 varchar(500),
column3 varchar(500),
column4 varchar(500),
)
insert into xpinfo exec xp_msver
go
select * from xpinfo
August 4, 2010 at 10:45 pm
Please add an output file to the Job step of the job which is failing. It would give more details of the job execution.
[Edit] Adding to this, SQL Server 2005...
August 4, 2010 at 8:44 pm
Even though this post is for SQL 2000, check if it helps.
August 4, 2010 at 1:39 pm
Viewing 15 posts - 856 through 870 (of 1,161 total)