Viewing 15 posts - 6,931 through 6,945 (of 7,429 total)
Did you open the transformation object and update the mappings?
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
March 8, 2002 at 3:36 pm
Are there any special mappings in those packages in question or does it do it in all cases? If all then just to be sure create a simple package that...
March 8, 2002 at 3:35 pm
Yes, sounds right.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
March 8, 2002 at 3:33 pm
Does after this error a blank DTS package come up. Usually you get this kind of error if the DTS package contains links/references to drives and such not the same...
March 8, 2002 at 1:08 pm
No they can map but you still have to grant access via an NT authenication login account on the other SQL server. Once they have been granted access should work...
March 8, 2002 at 1:07 pm
Something like this shoulw work
DIM dFillStr, xLoop
FOR xLoop = 1 to 850
dFillStr= dFillStr & " "
NEXT
Once done you will have a variable with 850 whitespaces that you can just plug...
March 8, 2002 at 1:03 pm
Glad to hear. I should have known this when I first saw as I have this same problem with Novell servers that I have done that way for over 2...
March 8, 2002 at 1:00 pm
First both the servers have to be on the same domain (unless I missed something) as when the login occurrs it is passed as (AUTHENTICATOR\LOGINNAME) what you want is DOMAINNAME\LOGINNAME...
March 8, 2002 at 12:56 pm
I'll try to find it but I believe the DTS components for SQL DTS packages are lincensed only with the install of the appropriate SQL version check out http://www.microsoft.com/sql as...
March 8, 2002 at 12:30 pm
I believe that is because it is trying to find the SQLSERVERAGENT service running. I cannot find any other reasons, I suggest try a reinstall (but I know this is...
March 8, 2002 at 10:46 am
Ok I tested until I was blue in the face but here is what you need to do and why.
create function dbo.checkemailunq(
@email varchar(50))
RETURNS bit
AS
BEGIN
declare @unique bit
if (select COUNT(rid) from dbuser...
March 8, 2002 at 10:14 am
Try this in QA,
SELECT [Name] FROM msdb..RTblNamedObj WHERE [Name] = 'YourPackageName'
If not found then it did not save properly and I believe you will just have to recreate. Otherwise...
March 8, 2002 at 6:13 am
At this point not 100% sure, first is Domain\tankho1 you said it is an Adminstrator, is a member of Domain Admins or just a local adminstrator? If local make a...
March 8, 2002 at 4:53 am
That is a very good point to add Robert, I have myself made that mistake many times.
"Don't roll your eyes at me. I will tape them in place." (Teacher on...
March 8, 2002 at 4:26 am
I am going to double check tomorrow and in Books On Line there was a statement they couldn't and a statement on how to use them (which keymoo's looks right)...
March 7, 2002 at 8:37 pm
Viewing 15 posts - 6,931 through 6,945 (of 7,429 total)