Viewing 15 posts - 12,586 through 12,600 (of 18,923 total)
Still have no clue of what you really need to do. What do you need to audit, how do you have to audit it?
October 17, 2005 at 8:29 am
What are you trying to do exactly??
October 17, 2005 at 8:18 am
There's still no other possible somewhat right answer... if the trigger fails, the whole transaction has to fail.
October 17, 2005 at 7:25 am
...and that's just the way it should be
.
October 17, 2005 at 6:49 am
This will work... but if you ever have to do this more than once, I'd suggest writting it as an inner join.
October 17, 2005 at 6:40 am
Forgot that you'll have to change the xType to 'U' as well.
October 14, 2005 at 10:08 am
Maybe you could recreate the table under another name. Get its status there, then update directly the system tables (assuming you can't stop the server for a few sec...
October 14, 2005 at 10:04 am
select substring(ColumnName, charindex('bal', ColumnName), 11)
from orderitem
where writtendate = '01-sep-05'
October 14, 2005 at 9:51 am
Why did he make them system objects is really the first question to ask...
What is the problem with dts??
October 14, 2005 at 9:44 am
Not quite... check out the books online for the correct syntax.
October 14, 2005 at 8:12 am
You can use charindex on a column as well to fin the position of a string. Then you can use that information to manipulate the data as needed.
October 14, 2005 at 8:00 am
I think I would do a normal lookup table and then add another table with the alternative namings of the key. Why do you need to do that?
October 12, 2005 at 6:53 am
The server will have to validate that the data modifications you do do not break the fk constraint. Won't have any effects on the select unless you add indexes.
October 11, 2005 at 8:57 am
Viewing 15 posts - 12,586 through 12,600 (of 18,923 total)