Viewing 15 posts - 46 through 60 (of 74 total)
We've recently started using package configurations in our Development/Test/Production environment since developers cannot access test and production.
We used the process outlined by Ray Barley http://www.mssqltips.com/tip.asp?tip=1405 that uses an Environment variable...
May 14, 2009 at 7:59 am
I'm curious as to how the performance impact and usability of the trigger pattern is in comparison to the StartDate and EndDate column pattern where the most recent row has...
March 10, 2009 at 7:52 am
Hi Bradley,
How big is the table? Are there indexes on these two columns? I wonder if they can obstruct the lock acquisition during the alter table.
Maybe if you don't need...
December 24, 2008 at 7:43 am
I see there have been a few views; does anyone have some words of wisdom on this design conundrum?
December 22, 2008 at 9:14 pm
Well, the first question is are you willing to get SSIS? You mentioned using SQL Server Express, well SSIS is available starting at the Standard version (Basic Transforms). ...
December 22, 2008 at 9:13 pm
Thanks for the suggestion, although I don't quite see that working. That allows me to add index with Online=On, but has no effect on the computed column. I...
December 19, 2008 at 8:39 am
Harold Buckner (12/11/2008)
One...
December 11, 2008 at 8:05 am
Check out the SQL Server 2005 Performance Dashboard Reports
Those should easily answer most of your questions. After that it's time to really start digging, but these reports are my...
November 26, 2008 at 7:51 am
Thanks Barry, I'll have to do some performance testing and see how goes if I ever need to apply this across multiple columns.
November 24, 2008 at 8:57 am
Thank you all for your input. I did implement it as a CASE statement originally (see below). I am looking for a non case statement solution to handle...
November 24, 2008 at 7:00 am
Thanks for the article.
I have question about the Effective Max %. Assume we have no workload in PoolA, PoolB, and PoolC. Can the Default pool get 100% reources...
September 18, 2008 at 8:10 am
This seems to be the proper audience for the following scenario so here it goes...
We have multiple databases that each have multiple reports for the client delivered in an Excel...
August 13, 2008 at 10:04 am
Awesome question, I've actually used the Window functions in the past and the Group By almost got me!
June 27, 2008 at 9:40 am
Right, hince why I was saying no SQL injection cause it'd fail the convert big long string to int!
Anyways good thought provoking question!
June 6, 2008 at 8:45 am
Stored procedures have to be properly parameterized too. I've seen garbage like this way too many times:
string sql = "EXEC my_stored_proc " + param1;
Which still leaves you wide open...
June 6, 2008 at 8:36 am
Viewing 15 posts - 46 through 60 (of 74 total)