Forum Replies Created

Viewing 14 posts - 316 through 329 (of 329 total)

  • RE: Which Edition of SQL and I running?

    Thanks Steve!

    I was typing "select @@version" in Query Analyzer and displaying the results in "grid mode". And I didn't scroll far enough to see the info I wanted. "Text mode"...

  • RE: MSDB and History of DB Sizes

    Thanks for all the great ideas. I came up with this script to display the 'D'atabase sizes.

    use msdb

    select backup_start_date, logical_name, ROUND(file_size/(1024*1024),0) from

    backupset join backupfile

    on (backupset.backup_set_id = backupfile.backup_set_id) and file_type =...

  • RE: SQL 7 Trans log too big. How shrinK

    Yes,

    What happened in my case was that the DB backup failed to run (?) and all changes were stored in the log file. An 8GB log is not that big...

  • RE: SQL 7 Trans log too big. How shrinK

    Thanks to everyone for your help.

    I found another way to shrink the file size (on disk)of the ldf file: (only works if DB has 1 trans log)

    sp_detachdb '<dbname>'

    delete .ldf...

  • RE: MSDB keeps reverting to "Simple" mode

    Andy,

    I see your VB script but how do you run it from SQL? Do you schedule it at, say 10:30pm, assuming you stopped and started SQL server at 10pm?

    Bill

    P.S. I...

  • RE: MSDB keeps reverting to "Simple" mode

    Andy,

    You said that "It does change each time. I just reset it." Do you reset it in the morning and put up with a night of failed trans dumps...

  • RE: MSDB keeps reverting to "Simple" mode

    Steve,

    You say that one can write a stored proc to "do it and make it a startup proc". How do you make a "startup proc"?

    "For #2, exactly - transactions are logged, but you can only do a full backup, not a log backup....

  • RE: Passing data in/out of SQL Server

    Andy,

    You mention that "a job runs the app (a compiled dll in this case) that generates some files". How does the job know to start running? Is it setup with...

  • RE: Stored Proc debugger for SQL 7?

    Since the time of my posting I've looked at 2 T-sql debuggers. They are both OK, work with SQL 7 on up, but compared to the VB debugger they...

  • RE: need help using the SQL 2000 DTS lookup Tab

    SQL 2K

    TIA,

    Bill Salkin

  • RE: Perfmon show Master DB has size 0!

    Heard from Microsoft. This is a known bug in SQL 7! Services Packs don't fix it.

    Fix is to use SQL 2000 (works fine under SQL 2000)

    Bill

    Setup: running Win 2K, SQL...

  • RE: Perfmon show Master DB has size 0!

    Just got a response from Microsoft. This is, apparently, a known bug in SQL 7. Service Packs don't fix it. It's fixed in SQL 2000.

    Bill Salkin

  • RE: "Unable to ListenOn Connection....

    Addendum to “SQL 6.5: Unable to ListenON connection…”

    Immediately below the “Unable to write to ListenON ….” error is the following error:

    OS Error: 64 The specifed netwopk name is no longer...

Viewing 14 posts - 316 through 329 (of 329 total)