Forum Replies Created

Viewing 15 posts - 3,316 through 3,330 (of 7,164 total)

  • RE: SQL-Agent Job succeeded - Despite of errors in step1

    may be truncated if it exceeds the maximum length of 4000 characters

    This is a validation message based on SSIS not knowing if the result of an Expression in your Package...

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

  • RE: SQL Agent Jobs showing NO history

    And are you seeing history now?

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

  • RE: Get-WMIObject Win32_Volume fails on proxy account from Agent Job

    Rich James (8/24/2012)


    OPC.Three..

    The difference I see between your setup and mine from this is that I'm using a Domain account, rather than a local machine account.

    Do you get the same...

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

  • RE: DBCC SHRINKFILE failing with error Msg 3140, Level 16, State 5, Line 1, Could not adjust the space allocation for file

    Can you please check again. Yuor query is not checking for any of the MAX types. Try this one instead:

    SELECT t.name AS ,

    ...

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

  • RE: Using the Konesans File Watcher Task in SSIS to Process Data Files

    tonyclifton77 (8/24/2012)


    I now understand why the error occurs. I don't have the for-each loop set up correctly to process multiple files at once. It won't move to the next file...

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

  • RE: Backup on System defined path

    Anamika (8/23/2012)


    That said, it is a good practice to separate your backups from your SQL Server program,

    white paper / blogs on the above comment.

    -Ami

    From Best Practice recommendations for SQL...

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

  • RE: Renaming Primary Key - Impact ?

    Excellent, you're welcome!

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

  • RE: Backup on System defined path

    Which comment? I made many.

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

  • RE: Renaming Primary Key - Impact ?

    You could easily test it out using a test database and Profiler, but why risk it?

    USE DatabaseName;

    GO

    EXEC sys.sp_rename

    @objname = N'SchemaName.TableName.ExistingPrimaryKeyName',

    @newname =...

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

  • RE: DBCC SHRINKFILE failing with error Msg 3140, Level 16, State 5, Line 1, Could not adjust the space allocation for file

    The obligatory response: are you sure you want to shrink your data file? Stop Shrinking Your Database Files. Seriously. Now. by Brent Ozar[/url]

    Now that we have that out of the...

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

  • RE: SQL Agent Jobs showing NO history

    It might be a UI or server bug.

    What is the build # of the server?

    SELECT SERVERPROPERTY('ProductVersion');

    What is the build # of your copy of SSMS?

    Help Menu > About

    What does this...

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

  • RE: How can i make the data transformation in DTS to do an update instead of insert?

    I forgot most of my DTS skills but since you have not received any responses I'll make a general suggestion:

    Instead of loading the data directly into your target table, load...

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

  • RE: Backup on System defined path

    If the backup succeeds and is valid (i.e. can be successfully restored somewhere), then SQL Server later crashes then your backup will not be affected.

    That said, it is a...

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

  • RE: Avoiding the Deep model (Key, value)

    Here is another thread that discusses the topic with additional worthwhile responses to those already made on this thread:

    Pros and Cons - Table with loads of uniqe columns VS Row...

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

  • RE: View\User based Horizontal Partitioning

    Your comment about filtering using the security metadata available for the logged in user (e.g. by using ORIGINAL_LOGIN() or SUSER_SID()) is where I would go with it.

    See the section...

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

Viewing 15 posts - 3,316 through 3,330 (of 7,164 total)