Forum Replies Created

Viewing 15 posts - 196 through 210 (of 9,641 total)

  • RE: Check for duplicates before inserting

    MMartin1 (12/3/2015)


    So for using the error output and avoiding the fast load... Assuming this happens for every import you will get records in the error output. However you wont know...

  • RE: Trigger result from inserted / Deleted

    Why are you returning results from a trigger? The ability to return results from triggers has been deprecated. From BOL:

    Returning Results

    The ability to return results from triggers will...

  • RE: Linked Server Woes

    Do you have the linked server connections setup to "be made using the login's current security context"? If you do you likely are experiencing a double-hop authentication issue and...

  • RE: Check for duplicates before inserting

    Yes that is how it should work. The first row is inserted successfully because it won't violate the PK and the next row with the same PK values will...

  • RE: Using SSIS variables as input parameters for stored proc in OLE DB connection manager

    The parameter "name" for OLE DB is the ordinal position of the parameter starting with 0.

    So with 4 parameters you'd have parameter names, 0 through 4.

  • RE: Check for duplicates before inserting

    One option, which I've used in the past, is to not use fast load. Then you can use the error output on your destination to process those rows however...

  • RE: find duplicate loginame

    Mad-Dog (11/24/2015)


    ok..

    this is not what i'm looking for.

    i need to see if a user is connected from 2 different hostname.

    So

    SELECT

    DES.login_name,

    COUNT(DISTINCT DES.host_name) as...

  • RE: find duplicate loginame

    You shouldn't be using sys.sysprocesses anymore. You should be using the new DMO's sys.dm_exec_sessions and/or sys.dm_exec_connections depending on what you are looking at. I'm not sure what you...

  • RE: Login failed

    itsgaurav (11/23/2015)


    Thanks for reply

    My connection string is this where

    Data Source=Gaurav-Pc;Initial Catalog=AEX15;Integrated Security=False;User id=admin;Password=a

    Server Name : Gaurav-Pc

    database : AEX15

    User Id on Sql server and database : admin

    Password : a

    But message...

  • RE: What happens with uncommitted transactions?

    One thing not mentioned yet, is that an uncommitted(open) transaction will also keep the transaction log from being truncated (marked for re-use) so the transaction log will continue to grow...

  • RE: SSIS -- Howto traverse folder sequentially using for each loop container

    Can you define "sequentially"? If it isn't processing the folders in parallel then technically it is processing them sequentially. I have to assume you want the folders to...

  • RE: How to check the user which revoked the object permission

    You should be able to query the default trace for this information, as long as you look for it before the trace file that contains the information has been rolled...

  • RE: Login failed

    Can you post the connection string you are using for your application to connect to the SQL Server? It looks like you aren't providing a user name and password,...

  • RE: how to prove network is slow

    You can use perfmon counters to show what the network card(s) are handling. Like Current Bandwidth, Bytes Total/Sec, Output Queue Length, And Packets/Sec.

    I've also just used Task...

  • RE: installing multipe instances at the same time

    I don't know if you can start multiple installations at the same time, but I do know you can save quite a bit of time by slipstreaming your SP[/url] and/or...

Viewing 15 posts - 196 through 210 (of 9,641 total)