Viewing 15 posts - 5,716 through 5,730 (of 14,953 total)
Might be a recursion problem with the sub-query.
I have to ask, why the sub-query at all, or are these two different tables?
December 10, 2010 at 2:18 pm
Are you using a GUI table designer in VS?
If so, the way most of those work is by creating a temp table, loading all the data from the table into...
December 10, 2010 at 2:15 pm
vbradham (12/9/2010)
Leave the error checking aside, I...
December 10, 2010 at 2:10 pm
Fraggle-805517 (12/10/2010)
December 10, 2010 at 1:57 pm
On the schemas, you can check the schema_id column in sys.all_objects.
On performance, I'd run perf mon for a bit before and after, and see what the numbers look like.
Honestly though,...
December 10, 2010 at 1:52 pm
I tend to avoid comma-delimited lists for parameters these days, but when I do use them, I often find it useful to insert them into a temp table as the...
December 10, 2010 at 1:49 pm
It'll take a cursor to do multiple tables efficiently. You could use sp_MSForEachTable, but that's just a hidden cursor.
December 10, 2010 at 1:46 pm
Zeev Kazhdan (12/10/2010)
In Oracle 10 I do it in one select statement, using START WITH...
December 10, 2010 at 12:38 pm
autoexcrement (12/10/2010)
Adjacency (NodeID, ParentID) as -- Adjacency Query
...
December 10, 2010 at 12:32 pm
Craig Farrell (11/19/2010)
Late to the party, I know, but you referenced this in another thread and I had a curiousity. Could you discuss the 'lazy updater' component a...
December 10, 2010 at 12:30 pm
Then you'll need to drop them explicitly.
December 10, 2010 at 6:55 am
Those errors mean you didn't name the derived table "CTE1". That's all.
December 10, 2010 at 6:52 am
Are you writing a stored procedure?
If so, you don't need to explicitly drop the temp tables. The whole point is that they'll go away when the connection closes at...
December 10, 2010 at 6:51 am
GilaMonster (12/10/2010)
GSquared (12/10/2010)
December 10, 2010 at 6:49 am
I'll add to the question: Should autoshrink be removed, and then put back in when SSDs become the standard and hard-drive seek time is no longer a problem that needs...
December 10, 2010 at 6:33 am
Viewing 15 posts - 5,716 through 5,730 (of 14,953 total)