Viewing 15 posts - 16 through 30 (of 39 total)
I tried. No luck.
I cannot update even rudimentary distributed partitioned views. I read the articles and BOL and I am following all the rules ( as far as I can...
October 22, 2003 at 8:58 pm
Brilliant! Thanks! That would work.
October 22, 2003 at 7:52 am
Phil:
Thanks! It shows a new way I had never used. I still have a problem with switching the database context within procedure.
If I do dynamic exec (ie exec ('use...
October 14, 2003 at 8:40 pm
I have seen this behavior, while I was creating few non clustered indexes on one of our tables. I had three files in the file group, both set to auto...
October 4, 2003 at 12:55 pm
Thanks for the analysis and the article. It has been useful.
September 24, 2003 at 4:39 pm
The transaction is committed only after the log pages are written to the disk, no exceptions. All the checkpoint does is it writes the corresponding data pages for those committed...
September 24, 2003 at 4:36 pm
After the first GO, here is what happens at a high level ( I am excluding the compilation steps, locks etc,.since
that is out of scope for discussion here):
1. The data...
September 24, 2003 at 12:29 pm
Dirty Page: Def 1 is correct. They may include uncommitted trans also.
Buffer Cache: Def 2 is correct. The procs are in procedure cache.
Checkpoint: Def is correct except, happens in...
September 24, 2003 at 11:40 am
Thanks for the information. The reason I am asking for a SAN is, besides one or two main servers, we have about a dozen servers each with a few of...
September 24, 2003 at 9:11 am
That sounds reasonable. So, it looks like the pages within the extent were not contiguous and the defrag fixed it to a large extent. Is that true?
September 23, 2003 at 11:16 am
It generates the restore commands, that you can run from the SQL Query Analyzer. It relies on the 'Restore filelistonly '
to get the backups and constituent dat files. You can...
September 23, 2003 at 9:13 am
Yes, you are correct the third one is the page number.
Say you have a wait on resource 5:1:9337310
In my case DB 5 is Items and File 1 is Items_Data. ...
September 18, 2003 at 10:58 am
ray_higdon:
thanks for the replies.
The query
select top 5 avg(int) from table
gets the average of the entire table for int field, since the result is only one value the top 5...
September 17, 2003 at 4:28 pm
The problem with this is that I may not have 5 past data values all the time. Some time I
may have only 3. It would not let me say:
select avg...
September 17, 2003 at 10:01 am
The load balancing in SQL Server is through partitioned views. MS uses them extensively for all their TPC benchmarks. However, this requires lot of application & DB redesign and not...
September 17, 2003 at 7:51 am
Viewing 15 posts - 16 through 30 (of 39 total)