Viewing 15 posts - 48,646 through 48,660 (of 49,571 total)
Using brain dumps is considered cheating and if MS becomes aware of it, they will revoke all your certs and put a lifetime ban on your account.
If you want the...
June 1, 2007 at 2:24 am
I'd suggest you run profiler and catche the deadlock graph event. That will give you a graphical view of what was caused the deadlock, both the one that was picked as...
June 1, 2007 at 1:12 am
At their simplest, statistics tell the optimiser the distribution of data in a column (or a set of columns). It can help the optimiser know how many rows to expect...
June 1, 2007 at 12:08 am
I am just curious how much time and effort I should put into some of this or if I should just "put my faith in Microsoft" and that DTA knows...
May 31, 2007 at 12:43 am
For instance I dont want to have to prepend all the tables in my query with the fully qualified name.
Why not? Unqualified naming can lead to slower queries and unnecessary...
May 31, 2007 at 12:21 am
SQL unfortunatly likes to be on a server of its own. It doesn't like sharing resources with anything. It could be worse. I've seen someone put SQL on the same...
May 30, 2007 at 7:00 am
Having SQL Server on the same machine as exchange server is not a recomended practice.
See if you can find out how much memory SQL is using and how much exchange...
May 30, 2007 at 6:33 am
I would suggest running it with the execution plan on, as well as the IO and time statistics. That way you can work out which of the queries are the...
May 30, 2007 at 5:41 am
Sounds like a good candidate for transactional replication.
May 30, 2007 at 4:50 am
Then partition them. Use whatever parition scheme makes the most sense for the tables
They don't all have to have the same partition function. Related tables don't have to be correlated.
May 30, 2007 at 1:08 am
Rob, sounds like you need some on-site help. Whereabouts are you based?
May 30, 2007 at 12:22 am
The MSDE box was a test box not the production box. If tou read the first post, he is using SQL 2000 sp4 as the production db
May 30, 2007 at 12:19 am
Ah, sorry. I misunderstood. I thought you wanted to convert three tables into 1 partitioned table.
As I said before, the examples may show partitions done on datatime columns, but you...
May 30, 2007 at 12:15 am
I think you've misunderstood partitioned tables.
Partitioned tables are for when you want to split a single table into pieces either for IO performance or for fast loading and deleting of...
May 28, 2007 at 8:01 am
Viewing 15 posts - 48,646 through 48,660 (of 49,571 total)