Forum Replies Created

Viewing 15 posts - 6,931 through 6,945 (of 7,429 total)

  • RE: DTS package modification

    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)

  • RE: DTS Error in EM

    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...

  • RE: Linked Servers in SQL 7

    Yes, sounds right.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: DTS Error in EM

    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...

  • RE: Linked Servers in SQL 7

    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...

  • RE: How can I add filler into text file?

    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...

  • RE: Accessing an AS400 File Share from SQL

    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...

  • RE: Linked Servers in SQL 7

    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...

  • RE: MSDE good choice for this app?

    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...

  • RE: Sql Server agent wont start - Urgetnt

    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...

  • RE: Enforcing Uniqueness using UDF

    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...

  • RE: DTS packages

    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...

  • RE: DTS Package(MSMQ Task) fails due to Authenticatio

    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...

  • RE: Restoring database to a new server

    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...

  • RE: Enforcing Uniqueness using UDF

    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)...

Viewing 15 posts - 6,931 through 6,945 (of 7,429 total)