Viewing 15 posts - 331 through 345 (of 381 total)
What you need is to apply a workflow to this process. Select the first task to complete then the second (if they are transform tasks, select the target connection of...
February 20, 2004 at 6:31 am
What are the schemas for the three tables? What are the unique/primary constraints for these tables?
Russel Loski, MCSD
February 19, 2004 at 5:41 am
I usually use sub-queries:
select t10.Partner, t10.staffname, t10.clientcode, t10.clientname, t10.DebtTotal
from
(SELECT TOP 10 Partner, staffname,clientcode, clientname,sum(DebtAmount) AS DebtTotal
FROM tbl_Billsfortheyear INNER JOIN tblStaff ON staffindex = Partner
group by Partner, clientcode,...
February 19, 2004 at 5:39 am
Do you have IIS installed? And dot net framework 1.1?
Russ
February 19, 2004 at 5:18 am
I don't have the means to test this (let me know if it works:satisfied:
dim cmdXML as new SQLCommand ("xmlProc")
dim xmlInput as XMLReader = cmdXML.ExecuteXML()
dim...
February 18, 2004 at 11:44 am
I used it on one project. It had a few problems in set up (you had to be very careful on most steps and starting over could be a pain).
Russ
February 18, 2004 at 4:57 am
Actually your problem is a lot simpler than I made it.
You need a second global variable. You need one activex script, one dynamic properties task and of course the execute...
February 18, 2004 at 4:51 am
That is easy. Click the tools/options menu.
Then go to the Connections tab. I have the "Query Timeout (seconds)" set to "0" which I believe means don't timeout.
Russ
February 17, 2004 at 1:27 pm
This might work:
set @oldpk = (select name from sysindexes i where id =
object_id(@oldtable) and indid = 1)
indid = 1 -- Indicates the clustered index which frequently is the key.
Also try:
set...
February 17, 2004 at 11:53 am
That is something the client sets. I think that the server has a timeout, but by default it is unlimitted.
What tool are you using? Each one has a different method...
February 17, 2004 at 11:41 am
Create an execute sql task that executes on error. You would have a seperate one for each connection.
Set it to use the connection where you will be writing your error. ...
February 17, 2004 at 11:37 am
This is rather fun and relatively easy to do:
You need four tasks
ActiveX to get the file list
Dynamic Properties task (step called LoadPackageName to work with the code below)
ActiveX script to...
February 17, 2004 at 11:21 am
These two roles are database specific roles. Is the login in a sysadmin group?
I am going to suggest a way to prevent people from saving dts packages on your server. ...
February 17, 2004 at 10:53 am
I tend to allmost always use left join. It highlights the table that is going to show all rows.
I think that I tend to use Right joins when I am...
February 17, 2004 at 5:12 am
I have some ideas of what you could check.
Could some windows system setting be formatting the date with a hyphen?
What kind of transformation is used to transfer the date column...
February 16, 2004 at 8:30 pm
Viewing 15 posts - 331 through 345 (of 381 total)