Viewing 15 posts - 2,581 through 2,595 (of 2,635 total)
1. Yes, the latest version will always be executed. The package GUID remains the same regardless of how many versions are saved.
2. Correct.
3. Right again. A new version GUID is...
April 20, 2004 at 9:03 am
SQLSecurity.com has a security checklist that lists extended stored procedures that should be restricted to sysadmins. Have a look:
http://www.sqlsecurity.com/DesktopDefault.aspx?tabid=24
Greg
April 14, 2004 at 3:22 pm
Local packages are stored in SQL Server, not on a client PC. Does the ActiveX task use a file whose file path is designated with a mapped drive rather than a UNC...
April 14, 2004 at 9:21 am
Use the sp_reassign_dtspackageowner stored procedure in msdb to change ownership to his new login.
Greg
April 9, 2004 at 9:01 am
1.You could use a Transform Data task with lookup instead of the Bulk Insert task.
2. You could Bulk Insert into a work table then use an SQL task to join it...
April 5, 2004 at 12:15 pm
You can use DTS to either transfer data to an existing table or create an identical table then transfer data. It's your choice.
If you want to transfer table schema and...
March 30, 2004 at 2:35 pm
Jaishree,
If you have SQL Server 6.0, you'll have to upgrade to either v6.5 or v7.0 before upgrading to 2000.
See this MS TechNet white paper on upgrading -
http://www.microsoft.com/technet/prodtechnol/sql/2000/deploy/sqlugrd.mspx#XSLTsection125121120120
Greg
March 25, 2004 at 10:14 am
I don't know if this is more elegant but it's quicker than double-clicking on each transformation task and going to the options tab.
Start Disconnected Edit in DTS designer, expand Tasks,...
March 22, 2004 at 11:51 am
Hector,
Create a job and just make a job step for each database backup. Each step will contain a BACKUP DATABASE statement, the syntax of which is available in Books Online.
Greg
March 19, 2004 at 9:13 am
I see what you're getting at, now. Consider this: The plan in the article specifies copying the log backup file to the standby server and restoring it immediately after the...
March 18, 2004 at 3:01 pm
The only way I know to restore all the backup sets without interruption is to do it in Enterprise Manager. All backup sets are listed and you can check all...
March 18, 2004 at 11:28 am
If your packages were saved to SQL Server and if you have a backup of the MSDB database, you can restore the packages by restoring the database.
Greg
March 18, 2004 at 10:32 am
FILE is used to specify which backup set to restore from a backup device that contains multiple backup sets. For example, if your backup device contains log_bkup1, log_bkup2, log_bkup3, then FILE=1 specifies that log_bkup1...
March 18, 2004 at 9:45 am
We don't have stored procedures in the "common object" database. If an application needs to access the common tables or views, the stored procedure is kept in the application's database...
March 17, 2004 at 9:25 am
Viewing 15 posts - 2,581 through 2,595 (of 2,635 total)