Viewing 15 posts - 391 through 405 (of 606 total)
The only way I can see you achieving this is by linking all the tables together using a left outer join.
For example.
create table tmp_parent
(parentid int, name nvarchar(5))
create table tmp_child1
(child1id int,parentid...
October 22, 2004 at 5:15 am
You are missing the quotes here:
objMail.TextBody = GlobalVariable (OIW_DOLLAR).Value <-- this fails
should be:
objMail.TextBody = GlobalVariable ("OIW_DOLLAR").Value
October 20, 2004 at 7:04 am
store the output in a global variable which you can then access in your code
October 15, 2004 at 7:15 am
Easiest way is to create a temporary table in which you insert all the records that are duplicates. Remember that this includes the records you want to keep as well....
October 15, 2004 at 3:35 am
I would go back to the user and tell them that you will backup the database at the point of a new version and can then restore from the backup...
October 13, 2004 at 7:14 am
I understand what you are trying to do now. I've never tried it myself, but this article from sqldts.com is what you are looking for. It loads a child package...
October 11, 2004 at 9:22 am
You need to create an activex task somewhere that is called before the value of the variable is required. The syntax to set the value of the variable is:
dim yourlocalvariable
.....logic...
October 11, 2004 at 5:59 am
From your post I am not too sure what you are trying to do.
However, at a guess, I would suggest creating and populating a global variable in the first activex...
October 11, 2004 at 5:42 am
I am as surprised as you are. I would suggest reading the chapter "Shrinking the Transaction Log" in BOL. I think you need to investigate the virtual log concept. Sorry...
October 8, 2004 at 8:10 am
As far as I know, there is no way to do it directly.
You can use a product like emarcadero to generate diagrams which will also give you other features...
October 8, 2004 at 6:59 am
I would
Backup log xxx with truncate_only
Then use DBCC SHRINKFILE and specify the size that you want. This will shrink the physical log file.
Then go into enterprise manager and change your settings...
October 8, 2004 at 6:54 am
sp_MSforeachtable will help do what you are looking for.
Someone passed this on to me at this site. Search for it and you will see the code to do exactly what...
October 7, 2004 at 7:06 am
If dts is not playing the game properly the only thing you can really do, is to do the export through an activex task.
That way you can format the...
October 7, 2004 at 5:22 am
select sum(filesize) as MB, sum(filesize)/1000 as GB from o_file where volid = 2 and groupid = 200
October 6, 2004 at 10:02 am
An obvious way is to break the text column up during the insert and insert one column into seperate table columns that are large enough to hold the data required....
October 1, 2004 at 7:20 am
Viewing 15 posts - 391 through 405 (of 606 total)