Forum Replies Created

Viewing 15 posts - 3,931 through 3,945 (of 7,164 total)

  • RE: ?? on compare table to external excel ss

    Fix table and column names as needed:

    SELECT uz.*

    FROM User_Zips uz

    LEFT JOIN Zip z ON uz.zip_code = z.zip_code

    WHERE ...

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

  • RE: Bulk Insert Use a format file stored in SQL

    ashley.wardell (5/28/2012)


    Hi all

    I have a list of file i want to Bulk insert using the Bulk Insert command.

    I also have an XML format file for the data.

    I want to...

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

  • RE: Dynamically Export to new Excel File - TSQL

    lmeinke (5/25/2012)


    The Insert into "openrowset" command apparently needs an existing spreadsheet?

    Correct.

    Is the format of the spreadsheet the same for each district manager? If so, the simplest way to handle the...

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

  • RE: The expression could have a result value that exceeds the maximum size of a DT_WSTR

    You could try using an OLE DB Source instead of a DataReader source. Or you could try a different Oracle driver.

    I have to ask though, why can't you change the...

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

  • RE: T-SQL and Address groups

    That means the mail server accepted it from Database Mail. You'll need to check with the email server admin to see why the email delivery process ended inside the mail...

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

  • RE: The expression could have a result value that exceeds the maximum size of a DT_WSTR

    That is a derivation based on the query you're sending. The Oracle driver is reading that a Unicode string of length 4000 will be returned from the query. You'll need...

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

  • RE: Upgrading Domains

    krypto69 (5/29/2012)


    My SYS admins are updating our servers from windows 2000 to windows 2008

    We are using mixed mode authentication -

    Will I have any login issues?

    You should be fine.

    EDIT: forgot to...

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

  • RE: Who is changing the record... ??

    Deepak.Sharma507 (5/28/2012)


    ...if I create a trigger, is there any way I can find out which application did the changes. ??

    In your delete trigger this will retrieve the name of the...

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

  • RE: Response truncated when run as a job [SQL Server 2005]

    Use this as an opportunity to learn a new technique, you won't be sorry 😉

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

  • RE: Creating XML & XSD through SQL Query

    Your XSD file should probably be crafted by hand. Some tools (SSMS included) can reverse-engineer an XSD based on an XML file however it is only a "best guess", i.e....

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

  • RE: Response truncated when run as a job [SQL Server 2005]

    Try using the SQLCLR to implement web requests. There is no practical limit within .NET (2GB string) for response sizes.

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

  • RE: Row redirection and OnError Event

    Please do not cross-post. It just fragments replies and wastes people's time. Direct all replies here:

    http://www.sqlservercentral.com/Forums/Topic1307785-364-1.aspx

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

  • RE: Killing a package at runtime

    I would use a For Loop Container (FLC) to poll for data in Oracle using an Execute SQL Task and then sleep for n-seconds in between tries.

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

  • RE: Editing SSIS Package Configuration XML Files

    Welsh Corgi (5/29/2012)


    I opened the XML File in SSMS but it was one line.

    Press Ctrl+K+D to reformat the XML into something more readable.

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

  • RE: The expression could have a result value that exceeds the maximum size of a DT_WSTR

    Look into DT_NTEXT.

    Integration Services 2005 Data Types

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

Viewing 15 posts - 3,931 through 3,945 (of 7,164 total)