Viewing 15 posts - 27,121 through 27,135 (of 39,793 total)
It is what it said. You likely created the trigger with different SET settings than the table.
Change ANSI_PADDING, redo the trigger and then it should be OK.
September 11, 2008 at 9:06 am
My bet is a lot of what will come out of this is how to collect, manage, store, and anlalyze a tremendous amount of data.
September 11, 2008 at 9:06 am
You would use an UPDATE statement to change the data.
update tableB
set tableB.col = a.col
from tableA a
where TableB.othercol = a.othercol
The query syntax you have for SELECT would be...
September 11, 2008 at 9:04 am
There is no way you can get any level of code done that you're sure does this for US$395. Even at the cheapest rates you'd use way more than that...
September 11, 2008 at 9:01 am
Search for "cross tab" as well. That's what this is.
September 11, 2008 at 8:58 am
This looks like it will prevent deleting ONLY if there is a value of "1" in the Locked field. The row isn't necessarily locked.
also, this is an INSTEAD of trigger,...
September 11, 2008 at 8:57 am
Is there a restore operation occurring? It could be in STANDBY, which would allow read connections to it. You would need to remove those connections. Either tell people to disconnect...
September 11, 2008 at 8:54 am
I think it's a transient error. I know I got notified of a PM yesterday in email.
You can delete PMs, so the link isn't guaranteed to work. You can click...
September 11, 2008 at 8:47 am
Jim
Agree with you there. I was surprised to learn this, but I also wouldn't want my instance stopping because of tracing. The data is lost, perhaps there should be some...
September 11, 2008 at 8:45 am
An out-loud chuckle was heard in the office this morning. Very nice story!
September 11, 2008 at 8:31 am
You don't need separate endpoints.
For the witness, it can be anything, including a desktop running Express. No reason not to run one somewhere.
September 10, 2008 at 6:37 pm
I'd agree with David that in the short term, on a project or two, the mega hours help you. I've worked overnight on SQL issues at times and I've learned...
September 10, 2008 at 3:42 pm
Hey, I have a lot of those skills!
Actually going to work on them now as a break from work. See what the horses have left. :w00t:
September 10, 2008 at 3:07 pm
This isn't T-SQL code. It's VB Script, so you can't use CAST. You could use a VBscript function, such as CDBL
http://msdn.microsoft.com/en-us/library/3ca8tfek(VS.85).aspx
September 10, 2008 at 10:42 am
SQL server has a listener that must respond to connection requests. The listener has to "take" a port from the OS when SQL server starts up. If you look in...
September 10, 2008 at 8:22 am
Viewing 15 posts - 27,121 through 27,135 (of 39,793 total)