Viewing 15 posts - 106 through 120 (of 224 total)
There are some issues with the VB.NET code.
-- Steps onto soapbox
I suggest implementing some .NET best practices. Enclose every connection in a Using block, don't use Catch clauses without...
March 28, 2012 at 3:55 pm
I think I said "stuff it into an update trigger." Yeah, right. Well, for anyone who's interested, these are the final triggers. I had to remove the cascade updates from...
March 27, 2012 at 3:21 pm
Sometimes asking other people makes the answer show up in my mind. The posted code below works. I think I can stuff it into an INSTEAD OF UPDATE trigger with...
March 27, 2012 at 11:11 am
1998 New Beetle, yellowish-green (official color name was Cyber Green)
Attractive car, different, makes people think, fast and powerful engine for the car's size, gets to 90 mph before you realize...
March 22, 2012 at 2:02 pm
Thanks for information on extended events. I don't have permission to view them, but I've sent an appropriate query to those who do.
March 20, 2012 at 4:44 pm
It's not clear from your CASE statement what the intended result is.
The CASE statment isn't a Boolean expression, it's just an expression. The entire CASE ... END is like a...
March 8, 2012 at 1:25 pm
I wonder why the ISNULL doesn't prevent State and City joins from using an index, but ISNULL on the Zip does?
If you remove the State and City joins, and provide...
March 7, 2012 at 12:32 pm
BEGIN TRY DROP TABLE #AUM_Raw_Upload1 END TRY BEGIN CATCH END CATCH;
BEGIN TRY DROP TABLE #temp1 END TRY BEGIN CATCH END CATCH;
BEGIN TRY DROP TABLE #temp2 END TRY BEGIN CATCH END...
March 7, 2012 at 8:22 am
Thanks for the link. The site is blocked by my employer, so I'll take a look at it from home some time.
March 6, 2012 at 8:45 am
William Plourde (3/5/2012)
March 5, 2012 at 12:08 pm
venoym (3/2/2012)
Stephanie Giovannini (3/2/2012)
I'm curious which COMMIT statement is causing the error. There's a COMMIT...
March 2, 2012 at 12:19 pm
So, how would you fix the posted code so that the uncommittable transaction message isn't reported?
I'm curious which COMMIT statement is causing the error. There's a COMMIT statement after the...
March 2, 2012 at 8:03 am
At one time I was a PowerBuilder developer. In 1996, PowerBuilder was a meal ticket. By 2001, the writing was on the wall for PowerBuilder. My employer used only PowerBuilder,...
February 21, 2012 at 10:12 am
No, no, no, it doesn't work at all.
The server I'm using is a named instance. The "successful link" was actually referrring to the default instance on the same box. It...
February 8, 2012 at 12:38 pm
I've got this working, mostly. I used this script: (IP address replaced with zeros)
exec sp_addlinkedserver @server = 'LINK1',
@srvproduct = '',
@provider= 'SQLNCLI',
@provstr = 'Library=DMBSSOCN;ServerName=000.000.000.000,1433'
Now I have the...
February 8, 2012 at 12:15 pm
Viewing 15 posts - 106 through 120 (of 224 total)