Viewing 15 posts - 21,301 through 21,315 (of 22,202 total)
I had never heard of that before. Extremely useful information. Thanks for putting it up. Makes the decision to keep hyperthreading off production even better.
January 8, 2008 at 5:19 am
What's the context that the "index group" is mentioned? The only thing I can find referencing is in the dynamic management views for looking at missing indexes. According to Kalen...
January 7, 2008 at 12:13 pm
Are those two seperate fields? If not, ORDER BY with a TOP will get what you want. If what you're trying to do is find all the records for a...
January 7, 2008 at 12:03 pm
I did some tests. For good or for ill, I found that the XML & Table of Numbers worked better than anything else when dealing with large tables and complex...
January 7, 2008 at 10:42 am
You just have to keep the tests honest. I wasn't counting icons and going "Oooh, it's faster." In the simple tests, both processes had a table scan. The one that...
January 7, 2008 at 9:55 am
Very good points. I was just going to start looking up similar solutions in Itzik's books when I saw your post. I figured there was a way to bring a...
January 7, 2008 at 9:15 am
I just tested it on some larger procs. It really is better. Hmmm I'll have to document this one in our best practices doc.
January 7, 2008 at 8:30 am
antonio.collins (1/6/2008)
select * from monitor_hosts where @myList like ('%,'+cast(hostid as varchar(8)+'%')
be faster than this:
select * from monitor_hosts where hostid in (select val from dbo.fListToValues(@myList))
the first statement will always...
January 7, 2008 at 8:14 am
If you're using the function as a table, you can simply join to it. We do it all over the place.
Unfortunately, table valued functions don't have statistics, so if the...
January 7, 2008 at 6:43 am
I agree with Jeff here. Naming tables after the database they're contained in is not going to be helpful. Also, I wouldn't recommend using the module in the names. I'd...
January 7, 2008 at 6:08 am
Inside the SQL Server 2005 folder is a folder called Configuration Tools. Inside there is a tool called SQL Server Configuration Manager. Open that up. In there on the left...
January 7, 2008 at 6:01 am
Is "E" a drive or a share name?
It has to be permission issue from the service account that SQL Server runs under. Not the 'sa' login, but the login...
January 5, 2008 at 6:02 am
So far we only three or four schema per database. We manage our security through a role in the database. The roles get access to stored procedures. The stored procedures...
January 5, 2008 at 5:57 am
Viewing 15 posts - 21,301 through 21,315 (of 22,202 total)