Forum Replies Created

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

  • 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...

  • 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...

  • 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...
  • 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...

  • RE: Moving Objects From One Filegroup to Another

    Recreate the clustered index on the new filegroup.

    -Eddie

  • 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...

  • 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...

  • 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

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • RE: Where should I start?

    What are your current strengths?  Are you a developer or a systems admin?  ...or not sure which of those two you'd prefer to pursue?

    If you aren't now already proficient in...

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