Viewing 15 posts - 241 through 255 (of 3,011 total)
Your SQLIO test file size is far too small to be a valid test. I prefer to make it something close to the size of the database or at...
April 19, 2013 at 8:36 am
Problem solving questions are good, but sometimes a couple of simple technical questions are enough to weed people out.
I asked a candidate what versions of SQL Server they had worked...
April 18, 2013 at 9:17 pm
Lynn Pettis (4/15/2013)
Robert-378556 (4/15/2013)
OLTP...
April 15, 2013 at 10:57 am
The problem of “cooking” the data is hardly confined to healthcare.
Any time you are evaluating the performance of an organization with specific metrics you are giving people an incentive to...
April 15, 2013 at 10:41 am
You can use this script to fix this problem.
Change Maintenance Plan Owner
April 12, 2013 at 8:19 am
Are you sure this is not a problem with your rebuild script or stored procedure?
What happens if you just run an index rebuild from a query window like this?
ALTER INDEX...
April 10, 2013 at 8:05 am
Images can vary greatly is size, so it depends on the type of images you are storing.
If you don't know the image sizes, then any estimate is just a wild...
April 9, 2013 at 9:51 am
UncleBoris (4/2/2013)
No excuse but legacy and...
April 3, 2013 at 6:35 pm
I recommend creating the clustered index before the load, and create the non-clustered indexes after the load. This saves the step of building the clustered index, which actually amounts...
April 2, 2013 at 5:41 pm
The script on the link below can be used to determine the reference levels of all tables in a database in order to be able to create a script to...
April 2, 2013 at 5:21 pm
Why would the service account get locked out? Are you using the same service account on more than one server?
To answer your question, we setup new service accounts for...
April 2, 2013 at 5:16 pm
1. Shrink the database.
2. Reorganize (defragment) all tables.
3. Repeat 1 and 2 until there is no more progress.
Do not use rebuild (re-index), since that may cause the data file to...
April 1, 2013 at 10:51 am
GnuPG is a command line tool. It's open source and free:
March 30, 2013 at 4:30 pm
You can only reference a column (or columns) that have a unique constraint or index.
If the column you want to reference is unique by itself, then you can add a...
March 28, 2013 at 11:15 am
One solution would be to change the DATATYPE of the IDENTITY column to BIGINT.
You would have to reload the table, and you would have to change foreign key columns in...
March 28, 2013 at 10:09 am
Viewing 15 posts - 241 through 255 (of 3,011 total)