Viewing 15 posts - 4,621 through 4,635 (of 6,216 total)
Could you explain a bit about why you would do this?
Andy
March 28, 2002 at 5:41 am
I think you'll have to update sysjobhistory, I know of no built in proc to do it (though it might be there somewhere!) Not sure I'm thrilled with the idea,...
March 28, 2002 at 5:40 am
Views are very similar - really just a way to encapsulate a select that you'll be re-using a lot. Also tends to get used in those cases where there are...
March 28, 2002 at 5:36 am
Try select SERVERPROPERTY ('edition') for the edition, select SERVERPROPERTY ('numlicenses') to get the licenses, and select SERVERPROPERTY ('licensetype') for the license type.
Andy
March 28, 2002 at 5:31 am
As I recall it's a lot of work. You need to BCP it all out, generate scripts for everything, then drop db and device, then put it all back together....
March 28, 2002 at 5:26 am
Just to be on the safe side, please do not post entire code to MS procs. Paul if you still need it let me know.
Andy
March 28, 2002 at 5:23 am
We'll have to work on some links, I dont think we have much if anything. Not everything will convert, or even make sense to convert. Forms don't get moved, SQL...
March 27, 2002 at 2:36 pm
If you're going to take the time to build the match key, index it. I keep mine in a separate table along with primary key it goes to. Nice narrow...
March 26, 2002 at 7:27 pm
Try dbcc shrinkfile with the emptyfile parameter. This removes any data and tells SQL not to use the file further. You can then remove it.
Andy
March 26, 2002 at 6:06 pm
That's a good start. But potentially you have the situation I mentioned earlier, the key somehow already exists on the subscriber and you're trying to insert it again - that...
March 26, 2002 at 4:56 pm
Isn't Interdev loosely typed? Try declaring as variant.
Andy
March 26, 2002 at 3:22 pm
Have you set a reference to the ADO library?
Andy
March 26, 2002 at 3:21 pm
I've not seen a bug about this, have you checked MSDN? How/where are you checking for the duplicate key?
Andy
March 26, 2002 at 3:20 pm
This might help:
http://www.sqlservercentral.com/columnists/awarren/introductiontoadothecommandobject.asp
Andy
March 26, 2002 at 1:49 pm
Viewing 15 posts - 4,621 through 4,635 (of 6,216 total)