Forum Replies Created

Viewing 15 posts - 3,946 through 3,960 (of 7,164 total)

  • RE: Question on SQL Server Port being used, why 1434

    TCP Port 1434 is typically used by the Dedicated Administrator Connection.

    UDP Port 1434 is typically used by the SQL Browser Service.

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

  • RE: Execute a stored procedure from different domain

    The fact that the two servers are in different domains is only relevant if you want to use NT Authentication to fire off usp_B using a Linked Server.

    If you have...

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

  • RE: TrimEnd

    TrimEnd accepts a char array, not a string. This is a more explicit way to write the code:

    [char[]]$charArray = @('_','D','a','t','a','.','m','d','f')

    "ccra_Data.mdf".TrimEnd($charArray) #1

    "ccrb_Data.mdf".TrimEnd($charArray) #2

    "Project_Data.mdf".TrimEnd($charArray) #3

    "Projecs_Data.mdf".TrimEnd($charArray) #4

    Notice the letters I bolded above are...

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

  • RE: ForEachfile container capture "file not found" event

    Uripedes Pants (5/25/2012)


    Hey my friend opc.three!

    Just before you replied the lightbulb over my head fired off. I noticed in the output from the package the FEL throws a...

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

  • RE: Pass Database name in SP

    borislava99 (5/25/2012)


    Would it be better to use ?

    IF @ObjectDB='myDB'

    BEGIN

    USE MyDB

    END

    Msg 154, Level 15, State 1, Procedure TestProc, Line 4

    a USE database statement is not allowed in a procedure, function or...

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

  • RE: Data Reader source missing rows

    DO you have any non-default settings setup on the OLE DB Destination, e.g. "Ignore Failure" in the "Error Output" page?

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

  • RE: Auditing SQL Server activity to Security Logs

    Please read the section titled "Writing to the Windows Security Log"

    Microsoft White Paper > Auditing in SQL Server 2008

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

  • RE: AWE Changed - Maintenance Plan not working

    thunderousity (5/25/2012)


    Edition: Standard Edition

    Product Version: 9.00.4309.00

    Product Level: SP3

    Physical Memory_MB: 8184

    min server memory (GB): 2.00

    max server memory (GB) 4.00

    VAS_GB: 2.00

    awe enabled: 0

    Looks like I am at a sufficient version SQL Server...

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

  • RE: Force RaiseError for selected sysmessages

    N.D (5/25/2012)


    Thanks both,

    To clarify, it's the non-custom messages I'm trying to get to write to the log, eg - a 9002 log full event without having to force the log...

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

  • RE: Database Design: Audit/Security Measures and Workarounds!

    Abrar Ahmad_ (5/24/2012)


    ivycool2012 (5/24/2012)


    Without more detail it's going to be hard to provide any guidance.

    Rc Helicopters[/url]|

    Rc Hobby Stores[/url]

    Rc Helicopter reviews[/url]

    [font="Verdana"]

    We dump data in history tables via triggers etc logic in...

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

  • RE: Force RaiseError for selected sysmessages

    Just to add to what Steve said, you can see which system errors are automatically logged:

    SELECT *

    FROM sys.messages

    WHERE is_event_logged = 1

    ...

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

  • RE: ForEachfile container capture "file not found" event

    Hi again Kevin 🙂

    Since you are mapping a variable in your FEL you can use an expression in a precedence constraint to check if the variable was set to something...

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

  • RE: XML data in a row column

    I see. In that case I think the solution will require dynamic sql. Here is a start to help you get your column names. From here you can build a...

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

  • RE: OpenRowSet saves image in which format?

    The 0x is how SSMS displays a binary column. It shows it as a hex-value for benefit of us humans. Internally it is only 0's and 1's.

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

  • RE: OpenRowSet saves image in which format?

    Hmmm, can you store hexadecimal or base64 data in a binary column, hmmm :Whistling:

    Did it help to re-read that?

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

Viewing 15 posts - 3,946 through 3,960 (of 7,164 total)