Viewing 15 posts - 316 through 330 (of 606 total)
See this link.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dtsprog/dtspapps_8jfp.asp
March 30, 2005 at 8:56 am
I came across this site a while back and it helps me to script out my stored procedures in one go. This link is to the dts package script. I...
March 30, 2005 at 8:48 am
I think you will find that even though you were passing in "01" it was still treating it as 1.
If you put in an insert into a table in your...
March 18, 2005 at 2:34 am
Take a look at this link. It enables you to set source and destination properties at run time. I am guessing that you want portable dts packages. I use this...
March 17, 2005 at 9:33 am
I am almost certain it is because you are supplying single figures.
I.E in your example you get 8/1/2004.
You need to put some logic in to change this so it becomes 08/01/2004.
March 16, 2005 at 10:08 am
To execute the package from vb, use the following code. Note that the variables on the package are populted by using index in the code.
Also, the package is written using...
March 10, 2005 at 10:22 am
A starter for you.
Variables are designed to hold one value at a time, whereas temporary tables contain rows and rows of data. You could if wanted to, assign a row...
March 10, 2005 at 10:15 am
As far as I know there is no similar capability in ms access. Unfortunately, the whole db must be backed up (.mdb file).
The alternative you have are:
1. Use ms access...
March 9, 2005 at 2:50 am
Try this:
declare @inputstring as nvarchar(50) -- postcode input
declare @outputstring as nvarchar(50) -- postcode output
set @inputstring = 'WC1 2lf'
select @outputstring =
case when left(@inputstring,2) like '[a-z][a-z]%'
then left(@inputstring,2)
else
left(@inputstring,1)
end
select @outputstring
You can do this...
March 8, 2005 at 5:18 am
I can't see how yopu hope to achieve this. How will dts know which columns to map?
You are going to have to use activex to provide the logic behind...
March 8, 2005 at 5:01 am
If you are talking about adding screens with logic behind them, then the answer is no. There are a few tools in sql server such as enterprise manager, which allow...
March 8, 2005 at 4:58 am
Sounds to me like a permissions problem. Are you scheduling these dts packages through sql server agent?
What error/s are you getting?
March 7, 2005 at 4:11 am
I don't know much about security issues with firefox, but from a user point of view I find it a lot better to use than IE. Searching on the page...
March 2, 2005 at 3:35 am
Can't see anything wrong with your coding at all.
However , 'sSecondLineHeader = sSecondLineHeader ' could be causing a problem. I have encountered problems before when trying to re-assign a local...
March 2, 2005 at 2:46 am
Viewing 15 posts - 316 through 330 (of 606 total)