Forum Replies Created

Viewing 15 posts - 5,806 through 5,820 (of 8,754 total)

  • RE: Dynamic currency converter

    Obviously the Test Connection is successful?

    😎

    Don't have SSDT available at the moment, so I cannot do much more than point you to this article: Example using Web Services with SQL...

  • RE: Return UniqueIdentifier of newly inserted row

    Quick thought, use the OUTPUT clause, here is an example

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    DECLARE @GUIDINSERT TABLE

    (

    GUID_ID UNIQUEIDENTIFIER NOT NULL

    ...

  • RE: Linked servers from 2012 to 2005

    Quick thought, having a Named Pipe as a protocol there looks odd, have the client network configurations changed on the server?

    😎

    Named Pipes Provider: Could not open a connection to SQL...

  • RE: Importing a text file into SQL Server

    itmasterw 60042 (4/3/2015)


    Hi,

    Someone was telling me that they had a text file that was both comma and piped delimited and that they used BCP to import it.

    While they did not...

  • RE: Dynamic currency converter

    Quick question, as looks like the HTTP Connection Manager is not correctly configured, can you post the connection configuration?

    😎

  • RE: hash value data types don't match

    t.mounika01 (4/3/2015)


    In the input column the hash value is in bytes and in output column it is string

    As SSIS does not have the concept of implicit type conversion you will...

  • RE: Matching Column IDs based on field contents

    Further on Sean's answer, seriously suggest you look into some database design patterns, what you got there is just awful

    😎

  • RE: Converting date column that is a varchar data type to a datetime data type

    ZZartin (4/3/2015)


    Quick question Grant, how many times have you seen systems/processes fail on the 13th of the month? I can count a good handful.

    My favorite was coming across a system...

  • RE: hash value data types don't match

    t.mounika01 (4/3/2015)


    Hi

    I am trying to use multiple hash in my ssis package and after the multiple hash, i added a lookup column to check if the record exists...

  • RE: High Availability Replica

    krypto69 (4/3/2015)


    Hi,

    I know it is possible to use the secondary replica to pull data (application intent) etc..

    But is there some way to query the replica directly via SSMS?

    Not certain I...

  • RE: Are the posted questions getting worse?

    djj (4/3/2015)


    Worked with a guy who would talk to his dog about a code problem.

    Now this can easily be mis-understood:hehe:

    😎

  • RE: How to get file name in SSIS user variable

    If I understood the question correctly this should be a trivial task using a ForEach folder enumeration, have a look at this article: Implementing Foreach Looping Logic in SSIS[/url]

    😎

  • RE: Spam topics

    Alan.B (4/3/2015)


    Koen Verbeeck (4/3/2015)


    Alan.B (4/3/2015)


    I actually came into the "Anything that is NOT about SQL!" forum to ask this question but think it's appropriate here....

    How do you report spam?

    At the...

  • RE: Converting date column that is a varchar data type to a datetime data type

    Grant Fritchey (4/3/2015)


    You should be able to simply run CAST against the data to put it into the right data type in the view. But, if the data is not...

  • RE: XP_cmdshell DIR

    Jeff Moden (4/3/2015)


    Eirikur Eiriksson (4/3/2015)


    I know I'm somewhat late to the show, haven't read through the whole trail and therefore might be missing something, but my approach would be...

Viewing 15 posts - 5,806 through 5,820 (of 8,754 total)