Viewing 15 posts - 2,416 through 2,430 (of 2,635 total)
Here's what you can do if you ever want DTS to create a table before importing:
After selecting the source table, click the Transform elipse to get to Column Mappings and...
Greg
December 20, 2004 at 1:16 pm
Hi Evelyn,
Assuming your backups are run by scheduled jobs, the msdb.sysjobhistory table stores the information you want in it's status and run_date columns. msdb.sp_help_jobhistory queries the table. See 'sysjobhistory' and...
Greg
December 17, 2004 at 10:14 am
Off the top of my head, there's SQL Server's C2 auditing, SQL profiler tracing, and products for purchase like Lumigent's Entegra.
Greg
Greg
December 17, 2004 at 9:38 am
Building on what Frank said about recovery model, if it's "Full", you can do a log backup now, restore last week's full backup with NORECOVERY, then restore the log backup with...
Greg
December 16, 2004 at 10:22 am
Hi Shoaib,
You might try using a Transform Data Task instead of an SQL Task. You can use the same SELECT statement in the Source tab. Then on the Options tab,...
Greg
December 16, 2004 at 9:50 am
Oh yeah. I forgot that each export is going to a different Excel file. In that case, the easiest thing to do is create copies of the connections as I...
Greg
December 14, 2004 at 2:20 pm
How about this?
--create a table with one name column and insert data
create table oldname
(name varchar (20))
insert into oldname values ('Jones,Larry/Dee')
insert into oldname values ('Smith,Gene/Wilma')
select *...
Greg
December 14, 2004 at 12:03 pm
You can use the same connections since you want your tasks to execute serially. If you had tasks that you wanted to execute in parallel, you would use seperate connections.
To...
Greg
December 14, 2004 at 11:00 am
Tom,
The correct syntax is BACKUP LOG <dbname> WITH TRUNCATE_ONLY
Greg
Greg
December 14, 2004 at 10:24 am
sp_helprolemember will list the members of a particular role or, if you omit the role parameter, all roles in a database. See BOL.
Greg
Greg
December 13, 2004 at 9:48 am
Sridhar,
I think rossc and I are trying to describe the same thing. I wish I could copy an image into the message forum. Let's try this:
Transform Task1 ----> SQL...
Greg
December 13, 2004 at 9:40 am
Select IDENT_CURRENT will return the last identity value generated for a specific table. I agree with Frank that you should show the newly generated ID right after the row is inserted.
Greg
Greg
December 10, 2004 at 9:28 am
Hi Sridhar,
Create a package in DTS Designer. Add Connection objects for each source and destination to the workspace. Add Transform Data Task between each pair of source and destination Connections. ...
Greg
December 10, 2004 at 9:20 am
You can certainly use both tasks in a single package. Do you want to loop back and execute the same tasks again or will each Transform Data task and Execute SQL...
Greg
December 9, 2004 at 5:10 pm
I can think of three methods.
1. Since DTS packages are stored in the MSDB database, back up the database then restore it after the rebuild.
2. Open each package in...
Greg
December 7, 2004 at 9:08 am
Viewing 15 posts - 2,416 through 2,430 (of 2,635 total)