Forum Replies Created

Viewing 15 posts - 121 through 135 (of 261 total)

  • RE: Log Shipping replication

    Hi,

    you need Enterprise Editions only if you want to use the out-of-the-box logshipping procedures, if money is scarce you can allways implement logshipping by yourself. In that case Standard Edition...

  • RE: Stored Procedure and Batch File Problem

    try adding the path to xcopy, and no /Q option

    c:\winnt\system32\xcopy.exe "c:\Inetpub\ftproot\adam\MisBack\Bais\%1.AIS" "c:\Inetpub\ftproot\adam\Mission"

  • RE: Detach/attach and default database

    the script should work for all databases, and you can substitute model with tempdb.

    if you use sp_change_users_login with AUTO_FIX you have to overwrite your existing logins passwords, which may or...

  • RE: Detach/attach and default database

    hi, i'm using this after restores:

    ------------------------------------------------------------

    declare @login sysname

    declare log_curs cursor for

    select name from sysusers where upper(name) 'DBO' and status=2

    open log_curs

    fetch next from log_curs into @login

    WHILE...

  • RE: Stored Procedure and Batch File Problem

    try:

    SET @cmd = 'c:\ReloadMission\Rmission.bat ' + @mid + ' >> c:\miss.log'

    or

    SET @cmd = 'c:\ReloadMission\Rmission.bat ' + @mid + ' >> c:\miss.log 2>&1'

    and look at c:\miss.log on the server...

    karl

  • RE: Drop and add users in multiple DBs

    regarding the problem with your script:

    you need to put all sql-commands into 1 string and execute that, since the "use @dbname" is only valid for the scope of the exec...

    karl

  • RE: Drop and add users in multiple DBs

    Hi Scott,

    seems to me you are using local accounts on each server. Do you have a nt- or ads-domain? if so, you might use a domain account, which would exist...

  • RE: Sql Agent job results to text file

    Hi,

    you might put the create-login-scripts into a temp table and bcp that out to a text file...

    regards karl

  • RE: Recover Master ( cluster,SAN dies )

    Hmm, perhaps a dumb question, but why don't you put master and msdb on the storage array too? putting them on a different storage system just adds another point of...

  • RE: Truncate the log

    Can you post the error message for sp_repldone?

    karl

  • RE: Restoring when all I have is the LDF file

    Did you try:

    "Apex SQL Log

    Apex SQL Log is a powerful Microsoft SQL Server log auditing tool that analyzes SQL Server's own transaction log to display information on data and structure...

  • RE: Memorable Signatures

    or similar to sushila's:

    Alan Hadsell

    If brute force doesn't work, you aren't using enough.

  • RE: Shared Drives in Cluster

    Hi,

    you should be aware that each disk can only be contained in 1 cluster group, which can be owned only by 1 Node. Therefore each disk can be accessed only...

  • RE: Nodes not performing the same?

    Is the backup disk in the same cluster group as the sql server?

    do you access the disk via drive letter or via network share?

    sql server native backup or third party...

  • RE: Transaction Log shipping

    Hi,

    a good starting point is

    How to Perform SQL Server Log Shipping

    karl

Viewing 15 posts - 121 through 135 (of 261 total)