Forum Replies Created

Viewing 15 posts - 16 through 30 (of 108 total)

  • RE: Database will not shrink

    truncate_only does not consolidate the data, so only space at the end of the file is released.

  • RE: Buggy Software

    I know why software quality is so low.

    It is due to the charade that software is licensed, not sold. This legal fiction is the reason utter crap is allowed into...

  • RE: Sproc runs faster in QA than Web App

    First, determine where the time is spent - on the db server or not (network, client, etc.). Was your QA trial run from the same box as the Web app?

    If...

  • RE: What do I need to do? Cluster? Replicate? Help!

    With all the tables being added, log shipping sounds more like your best solution. It need not be the built-in variety either - you can roll your own pretty easily.

  • RE: Tempdb more than one file

    The round-robin/proportional fill doesn't work right for tempdb unless all the files are the same size. If the file that the server chooses to place an object on is not...

  • RE: Creating a Linked Postgres server in MS SQL 2000

    I ran into that error with a db2 linked server; instead of server.database.schema.table, what worked was server..schema.table, leaving out the database.

  • RE: Truncating Date

    Converting from datetime to varchar and back would be an awful thing to do for looking at a million rows, but performed once per call to modify a stored procedure...

  • RE: DBCC SHOWCONTIG Problem

    I will bet 25c on:

    EXEC ('DBCC SHOWCONTIG ([''FAC treaties$'']) WITH ALL_INDEXES, TABLERESULTS, NO_INFOMSGS')

    (those are two single quotes, not double quotes)

  • RE: select top 10 * from table Takes long time to run

    Try using UPDATE STATISTICS tablename WITH FULLSCAN. sp_updatestats uses either the last sample size, or the default (calculated internally). Then dbcc freeprocache to toss out existing plan.

  • RE: Truncateonly and Unused space

    The truncate_only option does not attempt to relocate data, so only releases space that happens to be at the end of the file. Also, shrinkdatabase will not reduce the size...

  • RE: How to choose a server

    For financial transactions, even at the low/medium rate of 1 per 3 seconds, I still would not settle for anything less than 2 processors, 2 GB (4 better), and at...

  • RE: Thoughts on ways to improve performance of heavily used server

    Yes, separate threads are used for separate files. Yes, spindles = performance. The situation you are in is difficult to guess at; trial and measurement is the only reliable method....

  • RE: Disk Defrag on RAID 5

    I am curious if you did it - which did you do first? Did it seem to make any significant difference in performance?

  • RE: Individual Database Memory usage

    If you really want to analyze the impact on the server - your db vs. others, get ahold of the PSSDiag and Read80Trace utilities from Microsoft (search the KB). They...

  • RE: Thoughts on ways to improve performance of heavily used server

    I think all of your own suggestions are good ideas. I like them roughly in the reverse order given...5-4-3-2-1. Sell number 5 to management by casting it as a high...

Viewing 15 posts - 16 through 30 (of 108 total)