Viewing 15 posts - 30,196 through 30,210 (of 39,819 total)
You can alter a stored procedure from a client by submitting an ALTER PROCEDURE statement. You can do this within a stored proc by using dynamic sql.
December 24, 2007 at 4:53 pm
The maintenance plans runs as a job, so you need a job reporting system.
You can query the msdb database on each server in multiple ways, script a connection to each...
December 24, 2007 at 4:52 pm
If that doesn't work, you can try these guys: http://pwcrack.com/sql.shtml
December 24, 2007 at 4:48 pm
You can save them out as VB packages and then perhaps write something to dig through the code, look for various tasks/connections, and provide some rough idea of complexity.
Most packages...
December 24, 2007 at 10:10 am
I'd pick up any of Itzak Ben-Gan's books on T-SQL. That will help.
December 24, 2007 at 10:08 am
You will need some scripting to identify the file and change the package to import it. Check http://www.sqldts.com for some ideas.
Also, please post in the appropriate forum.
December 24, 2007 at 10:08 am
The big one is probably being sure indexes are ok and statistics are up to date.
December 24, 2007 at 10:06 am
I think this is still being debated and I'd be comfortable with either approach as long as it was documented well. The call from the script package means you have...
December 24, 2007 at 10:05 am
Shrink the files, and then be sure that you are backing up the log periodically. A database backup is not enough.
December 24, 2007 at 10:01 am
The error log will display percentage of recovery if it's moving slowly. It is possible you have some redo or undo action that eats up log space. What was happening...
December 24, 2007 at 10:01 am
Dont' cross post.
Handled here: http://www.sqlservercentral.com/Forums/Topic436125-357-1.aspx
December 24, 2007 at 10:00 am
Right click, properties, remove the dbouse only option
December 24, 2007 at 9:59 am
If you need a result, send it back from the SP. A proc with an update statement doesn't generate a result set.
you can force one
create proc myproc
as
begin
update xx set yyy...
December 24, 2007 at 9:59 am
First, the 4 part naming convention is server.database.schema.object. The prefixes are everything before the object.
Second, I'd recommend that you create a view in one database pointing to the other object....
December 24, 2007 at 9:56 am
Viewing 15 posts - 30,196 through 30,210 (of 39,819 total)