Forum Replies Created

Viewing 15 posts - 6,076 through 6,090 (of 7,164 total)

  • RE: Log file getting filled up

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Log file getting filled up

    Ninja's_RGR'us (6/15/2011)


    A fast san can fill up 30 GB of log in less than 15 minutes.

    Sounds like you are doing everything right.

    I would check these 2 options out :

    What's...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Calling Oracle Procedure

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Writing data from one file to the next

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Query execution

    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

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Expression Builder Elipse Button(...) Does Not Appear

    Try putting your cursor in the Expression field and pressing F4.

    Make sure EvaluateAsExpression is set to True.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Set options total 249?

    -- good for checking options programmatically

    SELECT @@OPTIONS AS user_options ;

    GO

    --much nicer for humans

    DBCC USEROPTIONS ;

    GO

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Copy From FlatFile Using Wildcard in File Name

    Your mask will find files with that name. Did you check to see if the file on disk actually has a space in it?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Correcting a DATA_PURITY error

    Phew..happy it got that cleaned...thanks for the info gents.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Handling error in t-Sql script DURING Create Procedure

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Correcting a DATA_PURITY error

    That's ridiculous :hehe:

    How does one get the engine to store -0.00 ?

    I tried:

    USE test

    GO

    IF EXISTS ( SELECT *

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Proc faster when ANSI_WARNINGS is OFF

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Proc faster when ANSI_WARNINGS is OFF

    Dave Ballantyne (6/15/2011)


    Another thought......

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Proc faster when ANSI_WARNINGS is OFF

    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 an...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Query

    Or you can look into using Dynamic Cross Tabs:

    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs[/url]

    Similar to how Cross Tabs outperform PIVOTs, a Dynamic Cross Tab process will...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 6,076 through 6,090 (of 7,164 total)