Viewing 8 posts - 421 through 429 (of 429 total)
They should become activated if you open up a MaintenancePlan document window in SSMS.
to do that, do this:
1. connect to your server in Object Explorer
2. navigate to Management/Maintenance Plans
3. right...
---------------------------------------
elsasoft.org
September 20, 2006 at 5:34 pm
You should be able to detach it from 2000 and reattach on 2005.
Alternatively, you can make a backup in 2000 and restore from the backup on 2005. Then you'll...
---------------------------------------
elsasoft.org
September 20, 2006 at 5:25 pm
it may be that sqlcmd thinks the -D flag is meant for it, when in fact it is internal to the query passed on the cmd line. This would be...
---------------------------------------
elsasoft.org
September 8, 2006 at 4:14 pm
I doubt this would bring you much. My experience is that cross database joins are fairly cheap. It's the cross-server joins that kill you.
I would suggest profiling the database server...
---------------------------------------
elsasoft.org
September 8, 2006 at 3:58 pm
It should be possible as long as you have the perms to do it, but I am sure that MS does not support it, since you could damage your msdb...
---------------------------------------
elsasoft.org
September 8, 2006 at 12:05 am
You can also use the ServerConnection class in SMO to execute arbitrary scripts from code (even if they have GO keywords in them).
Check out the ServerConnection.ExecuteNonQuery() and similar methods.
ServerConnection...
---------------------------------------
elsasoft.org
September 7, 2006 at 11:59 pm
ramses2nd suggested above using a GUID as a primary key, and using newid() for the default. This is not a good idea if the pk is clustered since your insert perf...
---------------------------------------
elsasoft.org
September 7, 2006 at 11:42 pm
Yes, your developers need a firm spanking. How do you expect hardcoded server names to work when the code moves from test to production? (I assume you do test the...
---------------------------------------
elsasoft.org
September 7, 2006 at 11:33 pm
Viewing 8 posts - 421 through 429 (of 429 total)