Viewing 15 posts - 376 through 390 (of 446 total)
Looks like a case of dirty reads. Is the query executed with set transaction isolation level read uncommitted ?
March 11, 2008 at 11:49 am
I think he also needs to execute this to get database back to multi user mode.
USE [master]
GO
ALTER DATABASE [xyz] SET MULTI_USER WITH ROLLBACK IMMEDIATE
GO
ALTER DATABASE [xyz] SET MULTI_USER...
March 11, 2008 at 11:41 am
Both Lester and ALZDBA methods works good. I had tried and tested both methods sometime back but I found ALZDBA method less painful if you have only two or three...
March 11, 2008 at 11:32 am
Use master
declare @DBName varchar(35),
@STR varchar (255)
declare DBRecoveryModelGenerator_cursor cursor for
select name from sysdatabases
where category...
March 11, 2008 at 11:25 am
Delete files in a folder that are certain days old script is worth keeping in personal briefcase. Thanks for a good article.
March 7, 2008 at 8:57 am
kdv (3/5/2008)
March 5, 2008 at 10:55 am
I checked both 2000 and 2005 and it shows nvarchar(255) -
For an EventType of RPC, EventInfo contains only the procedure name. For an EventType of Language or No Event,...
March 4, 2008 at 12:46 pm
I found these articles by Steve very useful in my last couple of interviews. Though they are published long time back. But still good for references.
http://www.sqlservercentral.com/articles/Administration/2988/
March 4, 2008 at 12:41 pm
In eventinfo column for DBCC inputbuffer you can see the first 256 characters only. Why not run a SQL profiler. Textdata column will display the complete code in it.
March 4, 2008 at 12:31 pm
use databasename
go
exec sp_fulltext_database 'disable'
March 4, 2008 at 12:27 pm
I had moved files using xcopy and robocopy on different server on same network in past. But, never tried if they work on ftp server or not.
A question for...
March 4, 2008 at 12:22 pm
Try this script to take backup on remote server. I am using it for long time.
/*
exec dbo.Usp_Remote_Backup_2005 @dbname = 'DataBaseName',@backupdevicename = 'DataBaseBackupName', @path = 'F:\Backup\'
exec dbo.Usp_Remote_Backup_2005 @dbname = 'DatabaseName',@backupdevicename...
March 4, 2008 at 12:12 pm
gdmilner (2/12/2008)
See if this does what you want. It seem to work for me in SQL 2000 and 2005.Cheers.
Thanks for the script G. I was looking for this...
March 4, 2008 at 12:00 pm
otian (3/4/2008)
It is MS SQL 2000. The Enterprise Manager can do that.
.
No. Enterprise Manager in 2000 is not that robust. But, you can register your 2000 server in...
March 4, 2008 at 11:16 am
SQL ORACLE (3/4/2008)
You did nothing wrong. But you need to do one more task to shrink your log file, such asDBCC SHRINKDATABASE('DBName')
to release the disk space.
I think it should...
March 4, 2008 at 11:03 am
Viewing 15 posts - 376 through 390 (of 446 total)