Forum Replies Created

Viewing 15 posts - 46 through 60 (of 93 total)

  • RE: xp_rsa_load_key not found

    Thank you

  • RE: xp_rsa_load_key not found

    Thank you Erland Sommarskog.

    I got the same link.

    I was curious about its impact. Whether I have to generate and embed it to app or just install it and it may...

  • RE: Data Compare

    Thank you.

    I was so confuse as on internet people are saying binary_checksum cannot guarantee to find differences but hashbyte is much accurate.

    As we have seen examples , it seems it...

  • RE: Read XML Input into table

    thank you britton.

    Following worked. I was not aware that XML column becomes case sensitive while selecting.

    DECLARE @testXml XML;

    set @testXml=

    '<invoices>

    ...

  • RE: Open Query to Oracle

    LutzM (8/6/2014)


    No I'ver reached the point where my very limited Oracle knowledge ends...

    Maybe Oracle requires values for each column. Don't know.

    Thank you Lutz.

    I will take care of oracle stuff, just...

  • RE: Open Query to Oracle

    LutzM (8/6/2014)


    Yes, the 2nd option is used when there's a need to send data from a SQL source to an Oracle target.

    I have used 2nd option but having following error....

  • RE: Open Query to Oracle

    Thank you Lutz.

    RPC with Execute worked.

    second option you have mentioned is use to insert records in Oracle from local MSSQL object ?

  • RE: Auto Indentation

    a free tool with option to customize

    http://www.apexsql.com/sql_tools_refactor_features.aspx

  • RE: Data Insert issue

    Phil Parkin (12/23/2013)


    You could also try forcing transaction commits in your WHILE loop:

    WHILE @@rowcount > 0

    BEGIN

    begin tran

    INSERT INTO tblPricingExc2 --table tblPricingExc2 has an Identity column as PK.

    ( Key ,

    Flag ,

    Id

    )

    SELECT...

  • RE: Data Insert issue

    Thanks Phil.

    Begin and Commit tran worked. Does this avoid logging ?

    I have insert and Update . No delete required.

  • RE: Data Insert issue

    Phil Parkin (12/23/2013)


    After creating your temp table, try putting an index on its Id column.

    Phil,

    I have done so, but have same results.

  • RE: Pass a parameter to OpenQuery?

    Jeff Moden (8/30/2012)


    It's been several years since I've had to work with OPENQUERY but I believe the following will work...

    select <stuff ...>

    from OPENQUERY(Banner_Prod, 'SELECT a.Major

    ,a.FIRSTNAME AS NameFirst

    ,a.MIDDLENAME AS NameMiddle

    ,a.LASTNAME AS...

  • RE: select top 1 value per group

    not a secrete 🙂

    I have product related data in database. one of the ex.dev wrote query to fetch results in 3 with top1 as I mentioned. Now I have got...

  • RE: select top 1 value per group

    yes, but I have to add some other conditions and they worked with your logic 🙂

    I would thank you both for valuable suggestions

  • RE: select top 1 value per group

    Thank you Sean Lange, it worked 🙂

Viewing 15 posts - 46 through 60 (of 93 total)