Viewing 15 posts - 2,491 through 2,505 (of 3,655 total)
set dtsPackage = DTSGlobalVariables.Parent
Set sourceConnection = dtsPackage.Connections("Text File (Source)")
sourceConnection.DataSource = DTSGlobalVariables("PollingBaseDirectory").Value
The preceding 3 lines are in a DTS I use to upload a text file as specified in...
January 30, 2006 at 6:00 am
You want to take a look at the SQLXMLBULKLOAD process. There are lots of threads on the site but I had a similar problem to you and got
January 27, 2006 at 1:22 am
The ZIP is on a local drive.
I will try and use StdOut but I am not optimistic.
January 26, 2006 at 8:12 am
Brian,
You forgot to mention the snippets!
type in ssf and press TAB and you get SELECT * FROM.
You can add your own as well so I have set up
derr to bring...
January 25, 2006 at 1:54 am
I should like to get my full MCDBA but it is expensive and ultimately I don't think it is reasonable to expect a company to pay for it all, however,...
January 25, 2006 at 1:46 am
If it is doing it during DEBUG I would suggest printing the LEN and the CODE() for the character that is being passed in.
Clearly DEBUG is translating the space in...
January 24, 2006 at 11:24 am
The only way that I can think of is to use an OPENROWSET and predefined connection but that isn't a way I would choose to do it.
Are you using Windows...
January 24, 2006 at 11:21 am
I can't speak for the clustered environment but SQL2000 does NOT require the service accounts to be local administrators.
The accounts obviously need full privileges to the directories that SQL uses...
January 24, 2006 at 8:39 am
I believe that each filegroup gets assigned its own thread so the only benefit you will get will be from whatever using separate threads gives you.
January 24, 2006 at 8:10 am
If you pass in a string containing nothing but spaces LEN will return 0.
January 24, 2006 at 1:12 am
UPDATE dbo.account
SET dbo.account.balance = DT.TotalAmount
FROM dbo.account
INNER JOIN (
select sum(amount) AS TotalAmount, account_num from atransaction
group by account_num
) AS DT
ON dbo.account.account_num = DT.account_num
January 23, 2006 at 3:02 pm
Set up a role in DB2 explicitly to allow the execution of a stored procedure to insert the records into the appropriate table.
Add the user from DB1 to DB2 but...
January 23, 2006 at 2:57 pm
Start reading up about the sp_makewebtask and sp_runwebtask.
In summary you can design a simple text template of what you want with tags where your source query should insert its...
January 23, 2006 at 2:46 pm
Viewing 15 posts - 2,491 through 2,505 (of 3,655 total)