Viewing 7 posts - 16 through 22 (of 22 total)
GCottle: Renumbering approach did cross my mind however I envisaged it to be done without cursors. Our data can be few thousands items (which, I have to admit, I failed...
December 1, 2003 at 6:18 am
dkretz: I'm not sure how your code is different from mine (apart from couple error checks and one bug ). I guess it would be helpful if...
December 1, 2003 at 6:13 am
Looks like you have a requirement to "skip" offending records without failing the insert, otherwise why not just to create unique constraint on all three columns?
But lets assume that...
November 29, 2003 at 7:45 am
Andy,
very good article on trigger bypass, indeed. One thing that I wanted to mention - comes from a bitter personal experience with CONTEXT_INFO. As you're aware, it is an...
November 25, 2003 at 3:22 am
I assume that you want to change passwords in T-SQL where you can use sp_password procedure:
sp_password 'old_password','new_password', 'login'
for example to change password for sa:
exec sp_password 'foo', 'zoo', 'sa'
There...
November 22, 2003 at 5:23 am
quote:
Actually, they'll be ordered by the clustered index (but don't tell anyone I wrote that, as it's not admitted by Microsoft).
November 21, 2003 at 4:09 am
Few other things I think could be important:
November 21, 2003 at 3:30 am
Viewing 7 posts - 16 through 22 (of 22 total)