Viewing 15 posts - 1,036 through 1,050 (of 3,011 total)
We have only server roles, not user roles, because of not being able to use domain controllers...
Domain controllers have nothing to do with the use of database roles. Database...
January 6, 2011 at 1:58 pm
Don't give database users direct permissions to table. Give database role(s) access to the table, and add or remove database users from those roles as needed. When you...
January 6, 2011 at 12:45 pm
Here is another one you can look at:
Defragmenting/Rebuilding Indexes in SQL Server 2005 and 2008
January 4, 2011 at 2:20 pm
Columns that are too large also use more CPU time even if they are cached in memory. When you scan a table or index, it has to pass through...
December 31, 2010 at 3:01 am
hreisterp (12/29/2010)
sorry. I missed the link. Now i read it. Quite interesting what you guys did there. But this all ends up in implementing a welln known algorithm in T-SQL...
December 29, 2010 at 1:58 pm
Look at this thread:
December 29, 2010 at 9:24 am
1. Make sure the database to be moved is in full recovery mode, transaction log backups are being made at short intervals, and make sure they are retained at least...
December 28, 2010 at 2:23 pm
hreisterp (12/28/2010)
Jeff Moden (12/28/2010)
hreisterp (12/28/2010)
Used then outstanding LINQPad [/url]tool to do the same.
int[] data=data=Enumerable.Range(2,65536).ToArray(); // learned this today 🙂
var q = from s in data where !(from...
December 28, 2010 at 9:06 am
The code on the thread below uses the Sieve of Eratosthenes and Sieve of Aitken to find prime numbers.
Tests for the Sieve of Aitken returned all primes below 100,000 in...
December 27, 2010 at 1:47 pm
Indianrock (12/27/2010)
December 27, 2010 at 12:06 pm
GSquared (12/27/2010)
Michael Valentine Jones (12/24/2010)
I tried to just...
December 27, 2010 at 10:01 am
Some people just don't take criticism well, no matter how nice you try to be about it, and things can quickly get nasty.
I tried to just stick to the facts,...
December 24, 2010 at 11:12 pm
On the original subject of this thread, this is what Books Online says:
"SQL Server 2008 Books Online (August 2008)
Sorting Rows with ORDER BY
...ORDER BY guarantees a...
December 17, 2010 at 12:59 am
evald (12/16/2010)
Paul White NZ (12/15/2010)
Probably less than that know the full story. I trust you will do your part in educating the people you meet, now you know 🙂
Rarely...
December 16, 2010 at 3:36 pm
Viewing 15 posts - 1,036 through 1,050 (of 3,011 total)