Forum Replies Created

Viewing 15 posts - 5,806 through 5,820 (of 6,216 total)

  • RE: Recovering a dB without a current backup

    Your only chance might be with LogExplorer by Lumigent. Depends on if the log has been overwritten/truncated yet. Wouldn't get my hopes up.

    Andy

  • RE: dbo user with a NULL Login

    How about sp_changedbowner?

  • RE: dbo user with a NULL Login

    Try sp_change_users_login. I think you're just seeing an orphaned user.

    Andy

  • RE: Aliasing Problem

    I don't think that will work either. Why would you care? The reason for the alias is to "pretty" it up for display, especially if you're using a function or...

  • RE: FTP Task to specific Port

    Not that I can see. Not documented as a property in BOL or in the object browser when you view via VB.

    Andy

  • RE: Windows 2000 Services

    I dont think we have one posted, but that is worth having - I think we have one at work, think we got it by looking at the specs for...

  • RE: Dynamically transpose & export data to csv

    I'd like to see the code if you wouldnt mind posting.

    Andy

  • RE: List of DTS's

    Try msdb..sysdtspackages.

    Andy

  • RE: Invoking sp_password via VB

    How are you connecting? I tried with ADO 2.6 against SQL2000 with the following code, no problems:

    Dim cn As ADODB.Connection

    Set cn = New ADODB.Connection

    cn.Open "Provider=SQLOLEDB.1;Password=test;Persist Security Info=True;User ID=TestUser99;Initial Catalog=master;Data Source=eg"

    cn.Execute...

  • RE: xp_sendmail and HTML output

    Have not tried it - a quick hack would be to wrap your message in HTML tags, most email clients will switch to HTML if they see a leading <...

  • RE: Cannot seem to reconnect IIS / SQL7

    Don't sweat it - but thanks for posting - sometimes when you're stuck and looking for an answer running across a thread like this is just the thing to get...

  • RE: SQL2000- Restoring Master db in cluster

    I don't know about the cluster, but you can probably shortcut the restore. If you stop the service and just replace the bad master.mdf with a new "blank" one, when...

  • RE: VBScript file exceeds Job Step limit

    Nope, it stores it as nvarchar(4000). Sucks. Doing the batch file thing will work fine. What I usually do (since VBScript ain't my favorite) is to write it in VB...

  • RE: DB Owner doubt

    I keep all mine owned by SA - not a big deal to change even after the fact. Neatness more than substance though.

    Andy

  • RE: Deleted Transaction Log

    It should have worked with the single file attach - I've done this many times to quickly get rid of a huge log file (detach, delete log file, reattach). Torn...

Viewing 15 posts - 5,806 through 5,820 (of 6,216 total)