Viewing 15 posts - 1 through 15 (of 236 total)
The issue ended up being a firewall problem. I found it accidentally, but maybe the steps I took will help someone else solve a similar problem:
I decided to try...
December 3, 2014 at 10:11 am
I was able to run huge queries through SQL*Plus from both my computer and our SQL Server box. This rules out a network issue and an issue with Oracle....
November 25, 2014 at 12:59 pm
Thanks. That helped a lot. I won't try to justify the way I was going about it. I was obviously just thinking about it from the wrong...
February 7, 2014 at 7:02 am
That query took 12 seconds. That's a bit longer than I'd like it to take, but within the acceptable range. The execution plan looks like this:
The inner-most clustered...
October 9, 2013 at 10:29 am
Here is the actual execution plan:
For comparison, the WOStatus DELETE query, which takes significantly less time, looks like this:
The major difference appears to be the sorts on the index delete....
October 9, 2013 at 8:43 am
8 indexes including the primary key. The data space is 17.5G, and the index space is 7G.
There are no foreign keys.
Some additional information:
It stalled out while there was no...
October 9, 2013 at 8:10 am
...Or not.
The SELECT statements finish in a fraction of a second, but the DELETE statements continue to stall out.
October 9, 2013 at 7:52 am
Wow, talk about not seeing the forest for the trees. All three queries finished instantly, each using a index seek. I've altered the DELETE statements, and I expect...
October 9, 2013 at 7:17 am
Well, your suggestion made me quickly realize that I was missing two indexes. The field "CloseDate" was used often in queries, and was already indexed. The other two...
October 8, 2013 at 11:55 am
This is a critical issue that remains unresolved, therefore I must bump.
October 4, 2013 at 12:12 pm
That's a fair point. I hadn't considered that.
I've actually revised the process such that the entire transaction occurs after the lookup. I still need to perform the lookup...
February 24, 2012 at 7:23 am
Nothing? What a bummer. It's almost impossible to troubleshoot these problems without an error message...
October 21, 2010 at 2:30 pm
This really shouldn't be too much to ask for, should it?
October 20, 2010 at 2:51 pm
All I'm getting from the profiler is that it's actually executing the stored procedure. Apparently BIDS is getting the field names by executing the script programmatically, and there doesn't...
September 16, 2010 at 3:08 pm
Alright, I guess that's not working for stored procedures that run against another linked server. So I guess that solution won't work. Wonder how BIDS does it... maybe...
September 16, 2010 at 9:20 am
Viewing 15 posts - 1 through 15 (of 236 total)