Viewing 15 posts - 17,791 through 17,805 (of 39,903 total)
Indexes are built using extents (allocations of pages ) in the db file. As the index is built, it gets new pages from the file that are not necessarily contiguous,...
October 21, 2010 at 11:24 am
Note that you would take the output of Lowell's script and execute it in SSMS as a query to alter all tables.
The idea is that you are using code to...
October 21, 2010 at 11:22 am
We've done a variety of things here. Bike rides or hikes usually go over well with the kids in Colorado.
Movie night, video game times, those are fun. We've gotten Rock...
October 21, 2010 at 10:42 am
The typo is corrected and I will award back points for those that might have mistakenly picked up on that.
October 21, 2010 at 8:26 am
I know that some of these people are annoying, but let's try not to pile on too much. Just post that you expect them to do some work, or something...
October 20, 2010 at 4:05 pm
The presentation talks about people writing "=null" not "is null", and gives the latter as the proper way to test for NULL.
Multi-row triggers are something that people commonly do not...
October 20, 2010 at 3:36 pm
You run this as T-SQL
http://technet.microsoft.com/en-us/library/ms188787.aspx
October 20, 2010 at 3:27 pm
I'll try to make it. Not sure about the timing
October 20, 2010 at 3:26 pm
Express does not allow remote connections by default. Use sp_configure to change this
sp_configure 'remote access', 1
RECONFIGURE
October 20, 2010 at 3:22 pm
October 20, 2010 at 11:16 am
How do you do the import?
If you use BULK INSERT, http://msdn.microsoft.com/en-us/library/ms188365.aspx, there's a batch size parameter, which will load xx rows in a transaction and then commit.
There are similar things...
October 20, 2010 at 11:16 am
Replication can have delays, and it's not a scale out solution. It can mimic it if the loads are not too high, but there's no guarantee that one node will...
October 20, 2010 at 11:15 am
Measure the usage of various instances, keeping in mind CPU and disk. RAM is hard since they tend to use all memory, but look at #s of connections and transactions...
October 19, 2010 at 12:59 pm
Martyn Hughes (10/19/2010)
October 19, 2010 at 10:16 am
Viewing 15 posts - 17,791 through 17,805 (of 39,903 total)