Forum Replies Created

Viewing 15 posts - 751 through 765 (of 2,904 total)

  • RE: Can''''t attach db - Transaction log full

    How did YOU detach it?

    You can do it two ways.

    1. Enterprise Manager. Right click on the database, select All Tasks, Detach Database.

    2. Query Analyzer. Run:

    USE Master

    sp_detach_db 'dbname'

    -SQLBill

  • RE: Need a DBA for small (simple) free lance job

    Why can't you do it yourself? This should do the job.

    INSERT INTO \\servername.dbname.owner.tablename

    SELECT * FROM dbname.owner.table

    -SQLBill

  • RE: Developers and DBAs

    Good article about trying to work together. But it goes both ways. I'm a DBA and we have a developer who does EVERYTHING as a DTS package. Each step...

  • RE: Can''''t attach db - Transaction log full

    Nope, can't be used. It sounds like you don't have enough disk space for the files to be attached. Check that.

    Can you afford data to possibly be lost?...

  • RE: Maintance plan

    If your recovery mode is FULL, you need to do both the full backup and the transaction log backup. If you don't do the log backups, your log file...

  • RE: SQL Server version from MDF

    You are correct....my mistake. I misread the request.

    -SQLBill

  • RE: Data Restoration, Sort of...

    Most important. Was the .mdf file copied when the database was offline? If not, it probably is unusable.

    -SQLBill

  • RE: Conversion failed when converting the varchar value xxx to int

    What went wrong - an explanation.

    COUNT is an INTEGER value.

    count(convert(varchar(15), kund_id)) end as no_of_customers

    Since the first values returned are COUNTs, the column becomes INTEGER. Then you get a value...

  • RE: Interesting: I would like to know your views about.

    Previous versions were 6 & 7. Microsoft numbers the versions one up. That shows the progression even when the name doesn't.

    -SQLBill

  • RE: SQL Server version from MDF

    Try the RESTORE HEADERONLY command. Look up the syntax in BOL. I'm not sure that will give you what you want, but try it.

    -SQLBill

  • RE: Putting a database in recovery mode

    Unfortunately once you recover the database you can't do any more restores. As Ronald says, you will have to start over. Remember to use that WITH NORECOVERY until you...

  • RE: what is a job and what is a maintenance plan ?

    And they keep harping on the fact they are one of the youngest Oracle certified DBA's. But I knew a guy who had a photographic memory - he passed...

  • RE: what about this one

    My problem is that the Books OnLine is downloadable. You are applying for a SQL Server DBA job and have posted LOTS of questions here. They are very basic SQL...

  • RE: urgent plz

    My problem is that the Books OnLine is downloadable. You are applying for a SQL Server DBA job and have posted LOTS of questions here. They are very basic...

  • RE: database desing ,?

    Just so anyone else is interested:

    FYI - this poster had this to say in another thread:

    im oracle dba and applied for sql dba job and been given sql db questions,...

Viewing 15 posts - 751 through 765 (of 2,904 total)