Forum Replies Created

Viewing 15 posts - 211 through 225 (of 692 total)

  • RE: Help me blag a new job!!!

    Eleanor,

    I'm sorry, but I'm not sure that you're going to get a great deal of help with that particular request.  Depending on the type of experience you require, it could...

  • RE: How do I verify my directory paths in my user tables

    There is an undocumented extended stored procedure that you can use for this.  It is xp_fileexist and resides in the master database.  Following is a sample execution -

    exec master..xp_fileexist 'x:\SQL_Backups\test.BKP'

    If...

  • RE: Capturing file name and date/time of it.

    Here's a snippet of code from one of my procedures.  My filenames include the date in the name, so thats all I need.  However, by modifying the DIR command, you...

  • RE: rescheduling sql job

    As Mark said, the job related procedures are in msdb, and if you execute them from any other database, the procedure name must be qualified(msdb..sp_update_jobschedule).  However, if you are just wanting...

  • RE: killing a process that is rolling back

    Its refusing to disappear because it is rolling back.  It is undoing what it had done up to the time you killed it in that particular transaction.  If this is...

  • RE: Can''''t Alter Proc

    I'm not sure why its happening, but all you need to do is change the word CREATE to ALTER.

    Steve

  • RE: backup question

    By the way, regarding the script that I mentioned earlier... I just now had occasion to use it myself.  (I shrank a 2GB transaction log to 100MB).  In looking at...

  • RE: backup question

    >>Just to be clear, you don't think that backing up the transaction logs tonite will remove those inactive transactions?

    Yeah, it might. That really depends on whether the transactions have committed...

  • RE: backup question

    Yes, that helps.  You have a total of 48GB of transaction log, 653.85MB currently in use according to task pad.  You shrank the log a few hundred mbs, so that...

  • RE: suspect database

    declare @db sysname

    set @db = 'pubs'

    if (select databaseproperty(@DB, 'isSuspect')) = '1'

     print '   *****  database is SUSPECT.  *****'

    else

     print '   database is not suspect.'

     

    -- Steve

  • RE: backup question

    And your transaction log backup completed successfully?

    If you view the database (in Enterprise Manager) using taskpad view, what information does it give you about the transaction log?  Total size for...

  • RE: Scripting from EM... default directory

    I've never tried it.  When I script an object in Enterprise Manager, I usually want to work with the script immediately.  So I copy the script to the Windows clipboard,...

  • RE: backup question

    Are you sure that the 2nd file is associated with the database and that it is a transaction log?  The name, integration_log, would seem to indicate that it is a...

  • RE: Frank''''s Addition to Family

    Frank!  Congratulations!

    Treasure every moment.  They grow up so fast.  It seems like only yesterday that my kids were little.  Son's 18 and daughter's 15 now.  They are still the joy...

  • RE: Numbering of Records

    I don't know.  I live in YUKON OK, and I couldn't get it to work on my SQL 2K box.

    Steve

Viewing 15 posts - 211 through 225 (of 692 total)