Viewing 15 posts - 1,081 through 1,095 (of 2,635 total)
Sure. You just have to use a Transfer Data task for each table.
Greg
April 29, 2008 at 10:28 am
In my experience, db_datereader and db_datawriter were not enough to modify stored procedures in SQL 2000 unless the developer is the owner of the procedure. Our developers are members...
Greg
April 29, 2008 at 8:05 am
It's been a while - about five years - but I used DTS to copy data from Oracle to SQL Server. If you're using SQL 2005, you'll want to...
Greg
April 29, 2008 at 7:54 am
When you removed the rows manually, you used DELETE FROM which will work on a table referenced by a foreign key constraint, while the Import/Export Wizard uses TRUNCATE TABLE. ...
Greg
April 29, 2008 at 7:27 am
In that case, I suggest you set the parameters for sp_add_job, sp_add_jobschedule, and sp_add_jobstep with data selected from msdb.dbo.sysjobs, msdb.dbo.sysjobschedules, and msdb.dbo.sysjobsteps. If you run it every day, you...
Greg
April 28, 2008 at 9:58 am
We allow developers to create and run packages in a dev environment but only DBAs can move it to and schedule it in production.
Greg
April 28, 2008 at 9:25 am
The easiest way to copy jobs is to script them as CREATE JOB statements on the source instance and run the scripts on the destination instance. You can click...
Greg
April 25, 2008 at 12:07 pm
How frequently you backup the t-logs depends on how busy transaction-wise the database is. Hourly works for most of our OLTP databases.
You can shrink the file once you have...
Greg
April 25, 2008 at 11:39 am
To emphasize what Vee said, if you do transaction log backups frequently enough, log file growth should be manageable. Keep in mind that a log backup won't shrink the...
Greg
April 25, 2008 at 9:27 am
No. You have to move the logs separately. If you log to SQL Server, the data is in msdb- sysdtspackagelog, sysdtssteplog, sysdtstasklog. if you log to an...
Greg
April 24, 2008 at 5:20 pm
It's listed under system views in each database.
Greg
April 24, 2008 at 3:08 pm
Have you tried using the scripting function in Enterprise Manager?
Greg
April 23, 2008 at 4:01 pm
I installed it on my workstation and ran it against all of our SQL Server instances over the network. It had no noticeable affect on performance of either the...
Greg
April 23, 2008 at 3:53 pm
If the database uses the full recovery model you could try one of the log reader/recovery tools. I hear RedGate has a free downloadable tool.
If the database uses the...
Greg
April 23, 2008 at 3:48 pm
I suggest that you search for "long running jobs" on this site. There are several good articles with examples that I used when I was developing a job to...
Greg
April 23, 2008 at 10:48 am
Viewing 15 posts - 1,081 through 1,095 (of 2,635 total)