Forum Replies Created

Viewing 15 posts - 1,516 through 1,530 (of 1,535 total)

  • RE: SQL Server 2000 and log shipping

    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...

  • RE: SQL Server 2000 and log shipping

    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...

  • RE: SQL Server 2000 and log shipping

    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...

  • RE: SET STRANSACTION ISOLATION LEVEL

    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...

  • RE: SQL Server Alerts - WITH LOGGING

    Check BOL about severity levels. Severity level 0 for sure only writes to the SQL Error Log.

  • RE: Modifying fillfactor without rebuilding the index

    In Yukon there will be.

  • RE: SET STRANSACTION ISOLATION LEVEL

    I've run a couple of tests and it seem to be working as it should.

    Thanks.

  • RE: Disk Setup

    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...

  • RE: Running DTS Package Schedule (I Keep getting an Error)

    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...

  • RE: Truncate log

    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,...

  • RE: Execute job question

    Oh that is more cunning than cunning. I like it.

  • RE: Execute job question

    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...

  • RE: Execute job question

    Job level permissions are created by restricting access to the procedure which will execute the job.

  • RE: Execute job question

    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...

  • RE: Migrating DTS Packages

    quote:


    You might write a small VBScript for DTS Load from SQL Server and Save to structured file and 2nd script for Load...

Viewing 15 posts - 1,516 through 1,530 (of 1,535 total)