Forum Replies Created

Viewing 15 posts - 1,306 through 1,320 (of 2,897 total)

  • RE: sql server architecture

    Jeff Moden (8/29/2010)


    It's easy... it's like anything else in computers... stuff comes in, gets processed, and is output in one form or another.

    The input & output I understand....

  • RE: There is no space in the server

    Have you determined you need an extra drive ? If the log file grew to 100 G, and other junk got placed on the drive, then cleaning up...

  • RE: Job Succeeded, But Didn't Finish ?!?!

    It ran for quite a while with no issues. Perhaps the "order by" in step 1 adds to the load on TEMPDB. I did find that TEMPDB is huge today,...

  • RE: Aging Calculation for Items, Based on Status

    LutzM (8/26/2010)


    Maybe it would help if you'd post table def and sample data in a ready to use format as well as expected result. Would save those volunteers around a...

  • RE: Aging Calculation for Items, Based on Status

    I think that gives me the right dates, but is there a way to add more fields to the select ? Seems like I have to add them to...

  • RE: There is no space in the server

    What used up the space ?

  • RE: There is no space in the server

    If you restart SQL, you may free up some space from Tempdb that will at least let you function.

    Why did you run out of space ? Are your log...

  • RE: Kill all Connection only when they are locking a table

    Could you use TRUNCATE-INSERT or replication to move the data without dropping the tables ?

    Or you could probably use the results of sp_lock to choose the spids to kill.

  • RE: Restoring db

    Did you take a full backup before shutting down ? That's always a good idea to do before making changes to databases, servers, configuration etc ... Then you could...

  • RE: sp_locks

    After you write your script to send the email, write the detail to a table so you can review it later in case you miss it. I have a very...

  • RE: How to schedule a job on particular date

    Perhaps you could schedule a job to run every day, and when getdate = fiscalmonthstart + 1 you can start the job with sp_start_job.

  • RE: script to shrink db

    dba_neo (8/9/2010)


    thanks,but we need script to shrink it every night in small shunks as we already have a reorg/rebuild job running every night

    Isn't that also a waste of resources to...

  • RE: Log File Growth not Managed

    ejbatu1 (8/9/2010)


    I had another question on this... is backing up the log file (overwrite mode) every two hours and backing up the DB once a day (at night) a good...

  • RE: Delete multiple rows

    I'm a little late to this thread, but since this is live data, you should back up the table first so you can recover in case something goes wrong. If...

  • RE: Mdf ,Ldf

    Jim McLeod (7/21/2010)


    I am worried about a 15 GB database with a 100 GB log file! You may want to look into log maintenance and recovery models.

    I think he's...

Viewing 15 posts - 1,306 through 1,320 (of 2,897 total)