Forum Replies Created

Viewing 15 posts - 226 through 240 (of 261 total)

  • RE: Restore database never completes

    Hi,

    that behavior might occur if your msdb is full, so the actual restore is successfull, but the history of it can not be written to msdb.

    are there any...

  • RE: ODBC Connection failure.

    Hi,

    if you look in EM at Management-Current Activity the 4th column from the right side shows the used network library.

    On the client pc use start - run - cliconfg to...

  • RE: SQL Server Agent Version in a Cluster

    Hi,

    seems to me you applied a service pack or hotfix only to the active node, and forgot to do it on the passive node also.

    regards,

    karl

  • RE: How to find the last Transactions in SQL SERVER

    There is

    select top 10 * from ::fn_dblog( default, default )

    but it does not give the actual sql statements.

    karl

  • RE: Email alerts in a SQL Clustered environment

    Hi,

    if you want to use Outlook, be sure to have only the Exchange-Mailbox in your Mail-Profile, not any Mailbox-File.

    An other possibility is using a command line tool like commail.

    (For sending...

  • RE: tempdb deleted

    Hi,

    try starting SQL-Server with trace flag 3608, go to table sysaltfiles and look, if there are entries for tempdb.

    If no, create them, if yes, control the path...

    Hope this helps

    karl

  • RE: Start a job on another server.

    Hi,

    you should set up the target server as linked server, and then execute

    <linked server>.msdb.dbo.sp_start_job @Job_name=<jab name>

    regards

    karl

     

  • RE: Password Generator

    Hi,

    a quick hack is:

    declare @pwd sysname;

    declare @pwd1 sysname;

    select @pwd1=str(rand(datename(ms,getdate()))*1000000000);

    select @pwd=substring(@pwd1,4,len(@pwd1));

    It generates quasi random strings containing 7 numbers.

    Karl

  • RE: SQL Server 2000 - backupfile space allocation problem in msdb

    Hi,

    as soon as you get the database to online, you couls use the undocumented procedures

    sp_delete_backuphistory

    or

    sp_delete_backup_and_restore_history

    to truncate your backup history...

    regards

    karl

  • RE: SQL Server Cluster with log shipping

    Yes, it is possible to do log shipping from a sql-cluster.

    Actually log shipping in no other beast as doing regular backups and restores...

    If you've got sql server enterprise edition you can...

  • RE: Cant find database sysfiles

    Hi,

    does the content of sysfiles and sysfiles1 reflect the new location?

    how about master.dbo.sysaltfiles, does the content correlate?

    regards karl

     

  • RE: USING A DYNAMIC VARIABLE

    perhaps something like that?

     

    set @max-2 = 0

    set @sql = 'SELECT @max-2 = max(ordinal_position) FROM tempdb.information_schema.columns WITH (NOLOCK) where table_name = '''+@temp_table + '2'''

    EXEC...

  • RE: Log Shipping copy job failed

    If you create a job on secondaryserver for the copy-command and log the output to file (second register of job-step) you might get an error-msg for debugging...

    karl

  • RE: Log Shipping copy job failed

    could you post the copy command here?

  • RE: Log Shipping copy job failed

    Hi,

    if you copy manually, you use the security-context of your login user.

    Does copying work if you log into secondary server with the service-account?

    Also the copy-job might fail because at the...

Viewing 15 posts - 226 through 240 (of 261 total)