Viewing 15 posts - 5,941 through 5,955 (of 5,986 total)
Grant Fritchey (5/11/2010)
Whether the DBA knows it or not, that data can get changed by circumstances. It's best that you know that fact in order to gauge best whether or...
May 12, 2010 at 7:28 am
GilaMonster (5/11/2010)
As for the index usage, it's flushed when the DB is closed. Shutdown, restore, detach, offline. There's no way I know of to manually flush it. Eric, you said...
May 11, 2010 at 2:18 pm
The sys.dm_db_index_usage_stats view exposes statistics about the usage of indexes. I don't know for certain, but I suspect this is part of what the DTA uses behind the scenes to...
May 11, 2010 at 1:13 pm
You never stated what the error message is or what about the large file doesn't work.
I'm just thinking that when dealing with 1 GB sizes XML files, if you...
May 11, 2010 at 9:25 am
field1 will be set to whatever (field1 + field2 + field3 - field4) equals when the UPDATE statement initially starts.
May 11, 2010 at 9:17 am
Dobermann (5/11/2010)
Stumped. I need to find out when the value in Col3 (Dose) changes from the previous date (col5):...
...
... I only want to see rows 1, 2 & 3...
May 11, 2010 at 8:22 am
Dobermann (5/11/2010)
May 11, 2010 at 7:48 am
eric_russell 13013 (5/10/2010)
May 10, 2010 at 10:31 am
Let's assume that there are several (or a hundred) tables which partition client data, and they are all prefixed with the name 'client_data_%', and you need to create on each...
May 10, 2010 at 8:54 am
A long time ago, I was asked to write some custom reporting SQL queries against a 3rd party database containing 100+ tables. It had one unique key on most tables,...
May 10, 2010 at 7:52 am
I believe that referential integrity constraints are important in a database. If you have data models for two or three tightly integrated applications with overlapping foreign keys and sharing of...
May 10, 2010 at 6:52 am
Linking Servers:
http://msdn.microsoft.com/en-us/library/ms188279.aspx
Once you have created a linked server object for the remote server, there are several options for returning a resulset and joining it with local tables....
May 7, 2010 at 3:21 pm
PaulB-TheOneAndOnly (5/7/2010)
eric_russell 13013 (5/7/2010)
In the second episode, the guest developer describes his solution step by step and then gets candid feedback and reaction from the original developer.
Can the original developer...
May 7, 2010 at 1:13 pm
I think we need a new podcast series on MSDN or somewhere, and base it on the TV series 'Trading Spaces'. It could be called perhaps 'Trading Schemas'. Two developers...
May 7, 2010 at 12:53 pm
Since ClientID is not unqiue, then I assume the purpose of this ClientNum is to create a composite primary key. You can persist a calculated column using the PERSISTED clause,...
May 7, 2010 at 9:54 am
Viewing 15 posts - 5,941 through 5,955 (of 5,986 total)