Forum Replies Created

Viewing 15 posts - 4,876 through 4,890 (of 7,164 total)

  • RE: how to check stored proc execution status

    There are multiple ways to report errors from stored procedures. One way it so set the return code, which is always of type INT. The number can mean whatever you...

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

  • RE: Help With AWE Configuration

    kennethigiri (3/15/2012)


    Thanks very much people. Just that from some people's posts on the Internet I was beginning to get the impression that I should see this value reflected in the...

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

  • RE: Help With AWE Configuration

    kennethigiri (3/15/2012)


    Thanks very much people. Just that from some people's posts on the Internet I was beginning to get the impression that I should see this value reflected in the...

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

  • RE: Help With AWE Configuration

    I think you're are OK in terms of the DB engine. SQL Server is reporting the memory as I would expect, noted by the 9.77GB figure for buffer_pool_target_memory_in_GB.

    It's possible that...

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

  • RE: How to encrypt sensitve column while restore?

    Good call on the async stats, Jeff.

    @paul-2, notice in my code sample the "USE [test]" immediately after the RESTORE and before we set it to SINGLE_USER. In essence this guarantees...

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

  • RE: Parsing tab selimited text into SQL table

    The batch size comes into play when loading the data into the database which is downstream from the issue I am highlighting.

    The SqlBulkCopy.WriteToServer method (4 overloads) is how the class...

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

  • RE: Help With AWE Configuration

    1. What is in your boot.ini? i.e. are you using the /PAE or /3GB switches?

    2. Please post the results of this query run on your system:

    SELECT CAST(physical_memory_in_bytes / (1024.0...

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

  • RE: SQL Server 2005 page life concern

    It does sound like a good plan. Without LPIM in place I suspect you will not be protected from the memory trims Windows imposes on SQL Server at times...one of...

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

  • RE: SQL Server 2005 page life concern

    Lynn Pettis (3/14/2012)


    Not sure if AWE is going to help here. The /3GB switch should.

    No evidence of helping or hurting in terms of making more memory avaialble. But it...

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

  • RE: SQL Server 2005 page life concern

    What were the min/max_mem settings when taking the readings?

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

  • RE: What was running last night to fill my tran log.

    snomad (3/14/2012)


    Thanks for your time, we do have the default trace enabled. But, unless I'm missing something which is quite probable, I can't see that the relevant SQL is...

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

  • RE: compare difference of versions of SSIS package

    Elliott Whitlow (3/14/2012)


    sqlfriends (2/23/2012)


    I often need to compare what is the difference of a ssis package with a previous version.

    Is there a way to do that?

    Thanks

    Not easily.. The package...

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

  • RE: How to encrypt sensitve column while restore?

    vikingDBA (3/14/2012)


    SINGLE_USER mode allows only a single user at a time, but could be anyone.

    True, but you can guarantee you are the anyone 😀

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

  • RE: What was running last night to fill my tran log.

    Unless you have a trace running capturing all SQL, you cannot. But, you may be able to tell who was running the process that caused the autogrows. If teh Default...

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

  • RE: Creating a Schema if it doesn't exist

    Sean Lange (3/14/2012)


    CREATE SCHEMA must be in its own batch. What that means in context of your script if you will need to execute your create schema via dynamic sql.

    +1

    Here...

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

Viewing 15 posts - 4,876 through 4,890 (of 7,164 total)