Viewing 15 posts - 6,076 through 6,090 (of 7,168 total)
Sorry, out of ideas. Hopefully it's not a bad install.
June 15, 2011 at 6:51 pm
The things I think about sometimes while on my commute home...here is a much more efficient version of the script that only writes the final file once and only reads...
June 15, 2011 at 6:48 pm
I just got done reformatting the proc with SQL Prompt...next stop, comb through it line by line so I understand what it's doing before unleashing it on the world 😀
If...
June 15, 2011 at 4:59 pm
Ninja's_RGR'us (6/15/2011)
Sounds like you are doing everything right.
I would check these 2 options out :
What's...
June 15, 2011 at 4:41 pm
Not much to go on in and I don't use Oracle much these days but here are some random thoughts....
Does the procedure return a result set?
Is it possible you need...
June 15, 2011 at 4:27 pm
See if this version of TestScript.ps1 is what you're looking for:
<#
3 files are involved
1) File_config.txt - Main file that is in XML format but for this
it is just text...
June 15, 2011 at 4:23 pm
I agree with homebrew01. It could be any number of things. Please have a careful read through this article and post the actual (not estimated) execution plan from both environments:
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/%5B/url%5D
June 15, 2011 at 4:08 pm
Try putting your cursor in the Expression field and pressing F4.
Make sure EvaluateAsExpression is set to True.
June 15, 2011 at 3:59 pm
-- good for checking options programmatically
SELECT @@OPTIONS AS user_options ;
GO
--much nicer for humans
DBCC USEROPTIONS ;
GO
June 15, 2011 at 3:34 pm
Your mask will find files with that name. Did you check to see if the file on disk actually has a space in it?
June 15, 2011 at 3:06 pm
Phew..happy it got that cleaned...thanks for the info gents.
June 15, 2011 at 2:17 pm
You don't need to go down the dynamic SQL route unless you have another requirement not stated in your post regarding the use of TRY/CATCH. If you construct your sql...
June 15, 2011 at 1:58 pm
That's ridiculous :hehe:
How does one get the engine to store -0.00 ?
I tried:
USE test
GO
IF EXISTS ( SELECT *
...
June 15, 2011 at 1:48 pm
opc.three (6/15/2011)
TheSQLGuru (6/15/2011)
1) have you run a profiler trace, looking for recompiles while this thing is running?
I have not traced the process but will give it a go. I have...
June 15, 2011 at 1:31 pm
Dave Ballantyne (6/15/2011)
Would these functions return an ANSI warning ie "NULL value eliminated from query"
As that may be being 'consumed' somewhere and causing the slow down.
Ive mocked it up...
June 15, 2011 at 12:07 pm
Viewing 15 posts - 6,076 through 6,090 (of 7,168 total)