Forum Replies Created

Viewing 15 posts - 541 through 555 (of 709 total)

  • RE: shrinking and Reindexing large database in clustered mode

    Why are you shrinking the database every month?  If it's just going to grow again, then stop shrinking it.  You are just forcing your users to wait for the database...

    Eddie Wuerch
    MCM: SQL

  • RE: No Performance gain with Indexed view ?

    Is the indexed view even being considered?  Check the query plan (Ctrl+L in Query Analyzer) and look to see if the index in view is even being used.

    Are you running...

    Eddie Wuerch
    MCM: SQL

  • RE: Same Position - Man makes more money

    When you took the position, how did you negotiate?  It may simply be that the other person asked for more.  Next time around, be ready to do so for yourself.

    The...

    Eddie Wuerch
    MCM: SQL

  • RE: Can this function be Tuned

    If you're running this function many times, you may be taking a processor hit for the extra conversions in the second case evaluation.

    Try:

    CREATE

    FUNCTION...

    Eddie Wuerch
    MCM: SQL

  • RE: Moving Objects From One Filegroup to Another

    For the heap tables, you can move them by creating a clustered index on them using the ON [new filegroup] option.  Once they're moved over, you're free to either drop...

    Eddie Wuerch
    MCM: SQL

  • RE: Moving Objects From One Filegroup to Another

    Recreate the clustered index on the new filegroup.

    -Eddie

    Eddie Wuerch
    MCM: SQL

  • RE: SQL Server 2000 Table Partition

    Look up Partioned Views in BOL.  You'll wind up creating the separate tables to hold the different years (place them wherever you like, even on different servers).  The partitioning is...

    Eddie Wuerch
    MCM: SQL

  • RE: How convert UNICODE integer to date

    Unicode is a character format, not an integer format.  SQL Server stores unicode character data using the nchar and nvarchar types.

    Can you provide a few examples of what this data looks...

    Eddie Wuerch
    MCM: SQL

  • RE: Linked servers in a cluster environment

    Ensure that MSDTC is properly configured as part of the cluster, right alongside MSSQL and SQLAgent.  It is necessary for distributed transactions.

    -Eddie

    Eddie Wuerch
    MCM: SQL

  • RE: HELP! Creating Custom Primary Key in Trigger during INSERT

    Have you tried using an INSTEAD OF trigger instead of (the default) AFTER trigger?

      An INSTEAD OF trigger actually replaces the normal INSERT behavior, and it's up to you to...

    Eddie Wuerch
    MCM: SQL

  • RE: Using COMPUTE and getting query results to Excel

    Ditch COMPUTE, and use either CUBE or ROLLUP.

    The reason it doesn't work outside of QA is that your results are not a single resultset.  Each time a compute result is...

    Eddie Wuerch
    MCM: SQL

  • RE: Ctrl-Tab

    Many MDI applications use Ctrl+Tab to switch windows.

    Having never heard of your example as a 'standard', I fired up Word and Notepad to see what they did.  In both, Ctrl+Tab...

    Eddie Wuerch
    MCM: SQL

  • RE: How to set a row level lock

    If you have the memory available, SQL Server defaults to row-level locks.  If you are locking a significant number of rows on a page, it will escalate the lock into...

    Eddie Wuerch
    MCM: SQL

  • RE: Refresh method for Tables Collection

    The Refresh method simply reloads the list of tables into your DMO tables collection from the server.  It has no effect on the server or any object on it.

    To see...

    Eddie Wuerch
    MCM: SQL

  • RE: MSDBA vs MCITP (DB Admin, DB Developer and BI Developer)

    DBAhawk:  If you pick up the MCDBA, you'll be able to take an upgrade exam for MCITP: DBA (70-447) instead of the DBA tests (70-443, 70-444), and you will have...

    Eddie Wuerch
    MCM: SQL

Viewing 15 posts - 541 through 555 (of 709 total)