Viewing 15 posts - 1,516 through 1,530 (of 1,535 total)
I've done it and it works fine, all of the functionality of SQL logshipping is simple to create.
You just create a job to backup the translog to disk, then to...
February 19, 2004 at 4:14 am
You can logship using any edition of SQL, however you would have to cerate the scripts yourself to do it.
Once you bring up the database in standby mode on the...
February 18, 2004 at 7:12 am
Never had a problem with it, and I have used it extensively, although there are a couple of small pitfalls that you have to look out for when setting it up...
February 18, 2004 at 5:17 am
We have hundreds of procs and I wanted to avoid having to recode the entire group by going through with the nolock hint which is why I wanted to go...
February 13, 2004 at 9:13 am
Check BOL about severity levels. Severity level 0 for sure only writes to the SQL Error Log.
February 12, 2004 at 1:55 pm
In Yukon there will be.
February 12, 2004 at 1:09 pm
I've run a couple of tests and it seem to be working as it should.
Thanks.
February 12, 2004 at 12:55 pm
In my experience I would not use RAID 5 for anything unless I had to (ie couldn't get the head guys to fork out the dollars).
It's somewhat more costly but...
February 11, 2004 at 6:03 am
I would also suggest changing the job to use the dts name rather than the dts guid.
It could be a case where you made a change to the dts after...
February 11, 2004 at 5:59 am
I would go with
BACKUP LOG MWR_LIVE_DB_INCR_TEST WITH NO_LOG
GO
USE MWR_LIVE_DB_INCR_TEST
GO
DECLARE @FILENAME VARCHAR(200), @SQL VARCHAR(1000)
SELECT @FILENAME = RTRIM(NAME) FROM SYSFILES WHERE GROUPID = 0
SET @SQL = 'DBCC SHRINKFILE ('''+@FILENAME+''', 128,...
February 2, 2004 at 11:14 am
Oh that is more cunning than cunning. I like it.
January 30, 2004 at 5:26 am
Sorry I'm not clarifying this right.
You can create a stored proc that simply is an sp_start_job for the job that you want to execute. Granting the permissions for that user...
January 29, 2004 at 11:07 am
Job level permissions are created by restricting access to the procedure which will execute the job.
January 29, 2004 at 10:29 am
I would create a stored proc that will execute the job grant the appropriate permissions to execute the proc to the user and whenever the user wants to execute the...
January 29, 2004 at 10:10 am
quote:
You might write a small VBScript for DTS Load from SQL Server and Save to structured file and 2nd script for Load...
September 4, 2003 at 9:47 am
Viewing 15 posts - 1,516 through 1,530 (of 1,535 total)