Viewing 15 posts - 346 through 360 (of 18,926 total)
Option B is your best bet. The only issue with it is that you can eventually end up with 128 subversions of that search proc. Assuming it stops...
December 16, 2011 at 8:05 am
matthew.peters (12/7/2011)
I have an issue where an application is running a few different select queries with 'like' operators on a large table in the datebase. These queries in turn...
December 16, 2011 at 8:03 am
deanroush (12/16/2011)
December 16, 2011 at 8:02 am
SQL Kiwi (12/16/2011)
Grant Fritchey (12/16/2011)
I'm not even marginally surprised that you have one of these sitting around. Thank you!
Clearly I will need to work harder at surprising you in...
December 16, 2011 at 7:47 am
This is for 2007, but it hasn't really changed since 97.
December 16, 2011 at 7:38 am
Just add it in the query (datasource).
I've had issues in the past (2000, 2003). Not sure if it was me or access but that solved it.
December 16, 2011 at 7:19 am
Check what my script does. It can be converted to 2000 with a little work.
December 16, 2011 at 6:49 am
The backup size history is perfect for that. You just have to not delete it!
Here's a beta script I built :
IF OBJECT_ID('tempdb..#dbs') > 0
...
December 16, 2011 at 6:17 am
SQL Kiwi (12/16/2011)
Ninja's_RGR'us (12/16/2011)
Thanks, what's the DL?
An email distribution list. I saw the change on Connect before coming here, or looking at the DL, and already added a comment...
December 16, 2011 at 6:13 am
You data growth in the datafiles or the data files themselves growth?
December 16, 2011 at 6:06 am
GilaMonster (12/16/2011)
Ninja's_RGR'us (12/16/2011)
Ninja's_RGR'us (8/19/2011)
Issue posted on connect
As of today, closed as won't fix!!!
You know, it's not like it causes corruption and kills your prod db or anything that serious :sick:
Time...
December 16, 2011 at 6:00 am
Ninja's_RGR'us (8/19/2011)
Issue posted on connect
As of today, closed as won't fix!!!
You know, it's not like it causes corruption and kills your prod db or anything that serious :sick:
Time to speak...
December 16, 2011 at 5:40 am
Ninja's_RGR'us (8/19/2011)
Issue posted on connect
As of today, closed as won't fix!!!
You know, it's not like it causes corruption and kills your prod db or anything that serious :sick:
Time to speak...
December 16, 2011 at 5:39 am
Few things are not optimizable at all.
With a covering index, '%abc%' would still SCAN, but it would likely be a faster scan than a full table scan.
'abc%' = possible seek*
'abc'...
December 16, 2011 at 5:25 am
Viewing 15 posts - 346 through 360 (of 18,926 total)