Viewing 14 posts - 316 through 330 (of 330 total)
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"...
January 21, 2002 at 10:07 am
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 =...
January 14, 2002 at 10:01 am
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...
December 27, 2001 at 8:59 am
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...
December 24, 2001 at 11:44 am
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...
December 10, 2001 at 3:10 pm
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...
December 6, 2001 at 9:58 pm
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....
November 23, 2001 at 6:55 pm
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...
October 25, 2001 at 9:43 pm
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...
October 13, 2001 at 3:07 pm
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...
August 23, 2001 at 10:45 am
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
August 22, 2001 at 9:22 pm
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...
August 21, 2001 at 10:40 am
Viewing 14 posts - 316 through 330 (of 330 total)