Forum Replies Created

Viewing 15 posts - 16 through 30 (of 1,047 total)

  • RE: Some kind of concurrency issue?

    wolfkillj (1/24/2014)


    The developers have so much of that architecture built already, and frankly, I'd rather not accumulate any more responsibility for this project than I already have!

    LOL Understood -...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Some kind of concurrency issue?

    Its obvious that the event is being sent to the second thread before the transaction (first insert) has committed, regardless of what is going on in your second procedure.

    I will...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Some kind of concurrency issue?

    RPC calls are not the same as actual TSQL statements or procedures run directly against SQL server. They run inside of of the RPC server process, so just because thread1...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: sp_rename on Large Table Taking Hours to Complete

    Shouldn't take that long, the process must be being blocked.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Return Parent Record value from child records

    Jeff Moden (12/18/2013)


    If there's only one level of children, such as you might find in an Invoice/InvoiceDetail problem, then I absolutely agree. If it has more than 1 level...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Return Parent Record value from child records

    What you have presented looks like an ugly design. The PK appears to be a string that has a 'EXPXX' suffix appended to it. Then you must apparently strip the...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Is sp_executesql reliable?

    Grant is right on. Your use of sp_executeSQL is superfluous in terms of preventing injection the way you have implemented it. Read BOL on sp_executeSQL and learn how it works....

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Replication

    robin.pryor (12/12/2013)


    I have a lot of confusion around the fact that I have to use DEVSQL03.CDB.ORG to connect to the server, but SELECT @@SERVERNAME returns DEVSQL03. That has to cause...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Replication

    It appears the server was added using a fully qualified domain name like: server.domain.com. To be honest I have never considered the impact that might have on referencing database...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: DNS Aliasing, Reporting Services, and Kerberos

    Is Server1 the DNS alias name?

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Slow query due to IP address in statement with Microsoft SQL Server 2012

    Have you set up that as a linked server? What does the sys.servers entry look like?

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: How to make database back to standby mode

    You'll have to restore the most recent back with standby

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: BULK INSERT into a table using encryption

    yes. modify the stored procedure to do the bulk insert into your stage table first, then encrypt the column in place or encrypt by inserting into your final table...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Moving all Jobs on a server

    If you want and have the desire to, you can script out all of the Agent jobs using method from SMO from a .net utility. I actually do this on...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: listing of months for a particular year

    The first thing you need to do is sum up the items - group by each month:

    select mm=datepart(month,Date), itemRef, QTyTot=sum(Qty)

    from Purchaseorders P

    JOIN Items I on I.PoNum = P.PoNum

    group by datepart(month,Date),...

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 16 through 30 (of 1,047 total)