Viewing 15 posts - 32,731 through 32,745 (of 39,818 total)
Are you looking to have all stored procedures in the original database (dbA) access the tables in the new databases (dbB) and the tables will be deleted from dbA?
You need...
January 12, 2007 at 8:56 am
update sd2
set sd2.distinguishedname = sd.distinguishedname
from staffdetails2 sd2
inner join staffdetails sd
on sd2 = displayname = sd.displayname
January 12, 2007 at 8:52 am
I don't think this is possible. There should not be anything in an insert that needs to know about other threads unless this is some type of performance monitoring application.
January 12, 2007 at 8:49 am
My apologies. I've made some security changes and removed the offending script.
Steve
January 11, 2007 at 3:51 pm
I like the above advice. There are times a job is just a job. Look for a challenge elsewhere, either in technology or outside it.
If you're really bored, maybe take...
January 9, 2007 at 10:14 am
Thanks for the comments.
They don't "hold" the book for you. At least not for me. I've added stuff to my cart and then been notified that it's out of...
January 9, 2007 at 6:34 am
I'd call MS support for this. Sounds like maybe they either changed functionality or it's a bug in the SP.
January 8, 2007 at 9:28 am
select top 6 newid(), col1, col2
from table
order by newid()
January 5, 2007 at 2:46 pm
3-4M rows a day shouldn't be too bad. Are your quieries indexed? I'd start trying to optimize those, but don't make too many indexes with that many rows. 3-4 max.
January 5, 2007 at 10:13 am
If you do updates through stored procedures, make the change there. If you have updates through T-SQL and want to be sure they are captured, use a trigger.
January 5, 2007 at 10:07 am
I've seen something similar when the secure channel between teh SQL server and the domain controller is broken. Can't authenticate. Is this a new user? Or someone that hasn't logged...
January 5, 2007 at 9:56 am
Thanks for the replies and it's interesting to read.
Luke! Send me some SQL-Beer samples and I'll get them reviewed for the site! Always on the lookout for new and interesting...
January 5, 2007 at 9:01 am
Congrats on the MS job. Let us know how it goes if you can.
January 4, 2007 at 5:55 pm
Viewing 15 posts - 32,731 through 32,745 (of 39,818 total)