Viewing 15 posts - 53,716 through 53,730 (of 59,072 total)
Go into Enterprise Manager and using the Import/Export capabilites of "Data Transformation Services" to copy the tables with or without data. Will give you the opportunity to copy keys,...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 6, 2007 at 12:20 am
Unless you're using it to make a wholesale change to all the tables in a database, renaming columns in a proc is usually a bad idea...
... why are you renaming...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 6, 2007 at 12:15 am
The problem is that you should not use parenthesis around parameters for stored procedures. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
December 6, 2007 at 12:13 am
After taking a longer look at this, you could turn it into a stored proc and pass parameters.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 6, 2007 at 12:07 am
Of course it'll slow down during the day... more locks present on the tables and the query must create an execution plan each time the app generates the code... it's...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 6, 2007 at 12:05 am
Ya beat me to it, Ramesh!
--Jeff Moden
Change is inevitable... Change for the better is not.
December 6, 2007 at 12:03 am
Keep in mind that both the estimated and actual execution plans can lie like a rug... if you have any form of a loop in your code or, sometimes, a...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 6, 2007 at 12:01 am
No, Not true. Table variables are NOT faster than TempTables. Are you saying that because you think table variables live only in memory or because you think temp...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 5, 2007 at 11:53 pm
Ray,
First, I don't see any rows in your test data that look like the following:
'-20.000 EE 01 6060 3 997' output = -20.000 EE , it should be -20.000
'-20.000 01...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 5, 2007 at 11:41 pm
If the 5 procs can be executed at the same time and you have multiple processors, I think the 5 procs running in parallel with win out over the single...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 5, 2007 at 11:07 pm
First thing I'd try is to recompile all the views involved... could be you have a bad execution plan cached up somewhere.
I've run into this problem with "views of views"...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 5, 2007 at 11:01 pm
Heh... sorry about that, but at least I got your attention....:D
I should have mentioned that I'm working on an article (may end up being two) that covers a high speed...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 5, 2007 at 10:45 pm
Merry Christmas if you're Christian, happy holiday season if you're not.
Old quote from a magnet on my fridg... "The best things in life are not things". I've got my...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 5, 2007 at 10:38 pm
Ummmm.... you didn't save a copy of the original report that worked?
--Jeff Moden
Change is inevitable... Change for the better is not.
December 5, 2007 at 10:27 pm
Not a problem... let us know either way after you try it? Thanks...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 5, 2007 at 10:24 pm
Viewing 15 posts - 53,716 through 53,730 (of 59,072 total)