Viewing 15 posts - 541 through 555 (of 708 total)
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...
September 18, 2006 at 8:50 pm
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...
September 14, 2006 at 10:33 am
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...
September 14, 2006 at 8:53 am
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...
September 13, 2006 at 12:43 pm
Recreate the clustered index on the new filegroup.
-Eddie
September 13, 2006 at 9:55 am
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...
September 11, 2006 at 12:21 pm
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...
September 5, 2006 at 9:54 am
Ensure that MSDTC is properly configured as part of the cluster, right alongside MSSQL and SQLAgent. It is necessary for distributed transactions.
-Eddie
August 29, 2006 at 10:06 pm
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...
August 27, 2006 at 11:21 pm
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...
August 17, 2006 at 4:14 pm
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...
August 16, 2006 at 11:30 pm
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...
August 15, 2006 at 12:06 am
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...
August 15, 2006 at 12:01 am
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...
August 14, 2006 at 11:52 pm
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...
August 14, 2006 at 11:44 pm
Viewing 15 posts - 541 through 555 (of 708 total)