Viewing 15 posts - 1 through 15 (of 27 total)
Thanks Koen! You were right, it needed to be an ADO connection; the explicit casting turned out not to be needed. Below is what I ended up with....
May 14, 2014 at 8:39 am
Thanks Koen. Would you be able to help me understand how to do that? I tried one approach (ExecuteScalar()) and gave up on it, now trying something else...
May 13, 2014 at 9:44 am
Jason,
Thanks for the response. No, there are no recommended indexes shown when I display the execution plan.
As I said, I also have an index on RowNum that includes all...
September 23, 2013 at 12:13 pm
Hi,
I think one problem is you forgot to say 'set'...
For example, this:
BEGIN
@statusID = 3
END
...should be this:
BEGIN
SET @statusID = 3
END
September 19, 2013 at 10:02 pm
I forgot to mention... I also have an index on RowNum that includes all the fields I am selecting; with or without the index hint my query is 1. getting...
September 19, 2013 at 6:27 pm
Thanks Gail and Jeff. I've read the articles which seem like a good start - I feel a little more confident now to experiment. (Btw Jeff I did mean...
August 31, 2013 at 1:10 pm
Thanks Jeff.
From the looks of it I think there are a lot of other things I should learn before partitioning.
Do you think that if I know I will...
August 30, 2013 at 11:22 pm
Maybe filtered indexes would be smarter? (I was reading this among other articles...http://www.sqlservercentral.com/blogs/practicalsqldba/2013/04/08/sql-server-part-9-filtered-index-a-new-way-for-performance-improvemnt/)
I could create a filtered index for each account category or even each account sub-category....
August 30, 2013 at 11:00 pm
In trying to understand this a bit better, I googled for 'primary key clustered' vs 'unique key clustered' ... if I understand correctly the unique key will NOT prevent a...
August 20, 2013 at 12:32 pm
As info I looked at the list of dependencies and there are dozens and dozens of views that point to these tables (the account table I've asked about is one...
August 20, 2013 at 9:57 am
ChrisM@Work (8/20/2013)
August 20, 2013 at 9:53 am
Most of the queries will include the field in question, but will never join on the field in question. It will almost always be 80 or so characters but...
August 6, 2013 at 4:54 pm
After Jeff got me thinking, I ended up not needing very long strings after all so went with much shorter varchar's.
One thing I observed that was interesting...
When using SSIS to...
August 4, 2013 at 9:08 pm
Hi Jeff,
Thanks for the words of encouragement. I've been getting the SSC newsletter for awhile now and quietly helping myself to some of the articles therein. So, well...
August 3, 2013 at 5:56 pm
Viewing 15 posts - 1 through 15 (of 27 total)