Viewing 15 posts - 376 through 390 (of 532 total)
Check out sys.indexes and sys.objects in Books Online. However, if you are on a developed system, you will probably be overwhelmed by a list of all indexes on all...
June 2, 2010 at 8:04 pm
My understanding is that the index will be less efficient for data insertions/updates/deletions because the values of the included columns are stored at the leaf level, but a potential query...
June 2, 2010 at 7:59 pm
Pretty sure that this will happen regardless of what you do if you want to return X in the table without having an index that covers all X columns you...
June 2, 2010 at 7:28 pm
Yeah I'm not sure ... I didn't do a ton of research, just some quick Google lookups. I know there are other 3rd party driver providers though.
Your worst case...
June 2, 2010 at 5:35 pm
DataDirect is a 3rd party so all their money is made off these drivers, which is why they're a bit pricey. There are also some other 3rd parties you...
June 2, 2010 at 3:57 pm
lmu92 (6/2/2010)
June 2, 2010 at 2:19 pm
And I should add that I'm testing against:
declare @vc_test varchar(100)
select @vc_test = '&ACCT=100&USER=Steve.Jones&PERIOD FROM=01/01/2010&PERIOD TO=05/01/2010&LEVEL=Detail&SORT BY ?=Date';
June 2, 2010 at 12:54 pm
Now I'll say first off I'm sure there are more efficient ways to do this with tally tables, etc ... so if you're looking at a large amount of data...
June 2, 2010 at 12:52 pm
richard.noordam (6/2/2010)
...
June 2, 2010 at 12:30 pm
a.shahnazi (6/1/2010)
In SQL 2000, we could have a list of all indexes on a table at a glance.
How can I provide this in Management Studio ? I don't like...
June 2, 2010 at 12:22 pm
What are you wanting to return?
As it is, when you SET @AcctNbr = '0269%*83970', everything is returning exactly as it should.
June 1, 2010 at 6:30 pm
You should check this in your particular environment ...
I don't think you will see a difference in the execution plan between
with EMP_CTE(EMPID, NAME)
AS
(
SELECT EMPID,
NAME
...
June 1, 2010 at 6:05 pm
Steve Jones - Editor (6/1/2010)
I think that we agree that some things are necessary, therefore some taxes are required. Always have been, always will be.
I don't disagree with much of...
June 1, 2010 at 5:39 pm
Yes, you can update your CID field if you want to. However, generally it's better to leave the data split into the first 3 columns and then do the...
June 1, 2010 at 5:18 pm
Viewing 15 posts - 376 through 390 (of 532 total)