Forum Replies Created

Viewing 15 posts - 31 through 45 (of 605 total)

  • RE: MS Access Datasource - File already in Use

    Don't know of any definite reason why MS Access cannot be imported without locking, but I guess an open record may cause dts some confusion. Also, if a record is...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Financial Data warehouse design - which one is better - Snowflake or star

    To be honest, it all depends on what suits your own environment and the method you will be displaying the data in.

    For example, if you want to expose the data...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Importing excel through a dts package

    This code opens all files in a folder and unprotects them:

    '**********************************************************************

    ' Visual Basic ActiveX Script

    '************************************************************************

    Function Main()

    Dim sFolder

    Dim fso

    ...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: How Do I apply my DTS package to end user

    The best way is to write a stored procedure that calls the package. That way you can control security to the package through the sp.

    If you want them to choose...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Using Parameters in DTS

    You need to write activex task to bring up an input box. Here is the code:

    '**********************************************************************

    ' Visual Basic ActiveX Script

    '************************************************************************

    Function Main()

    DTSGlobalVariables("gvName") = inputbox("put your prompt text in here")

    msgbox(DTSGlobalVariables("gvName").Value)

    Main =...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: How to send Email using Sql Server 2000

    That link is an article on xp_sendmail. It has nothing to do with the article in the original link.

    Trust me. The smtp is FREE.


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: How to send Email using Sql Server 2000

    Are you sure you have to pay?

    I never saw anything about that and a lot of people I know are using it for free.


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: How to send Email using Sql Server 2000

    If you follow these simple instructions, you can be up and running in no time using smtp rather than mapi.

    Mapi required server configuration, installation of outlook etc, wherelse this does...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Saving SELECT Results to a CSV file

    Check BOL for osql utility. This utility allows you to send the results of a slect query to a file from a command line. Various paramaters can be set along...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: import pdf file

    If you are looking to import the data I would investigate the possibility of using xml. There are plenty of freebie pdf ocnverters out there that convert to all types...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Transform Data Task in DTS Pacakage

    Although dts is a valid ETL tool, I would use the term ETL very loosely.

    It's primary function is to move data from one table to another. Transformation is generally limited...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Scheduled DTS package fails to run after changing ''''sa'''' password

    When scheduled to run, the package runds under the account that the sql server agent is logged in as. I suspect you have not chaged the password for that user.


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: BCP Excel with Null value into table

    DTS plays a guessing game with excel. It looks at the first 8 rows of data and then decides itaself what data type the column is and whether it expects...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Mail Spreadsheet to Client from DTS

    SMTP is probably the best option for you. I use it and it is very reliable. See this link:

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=19&messageid=272242#bm272533

    and this link:

    http://www.sqldev.net/xp/xpsmtp.htm#Description


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Bulk Copy Error

    More often than not, errors are down to security. Check that the account that is trying to drop and create objects has the necessary permissions. Remember that if the job...


    ------------------------------
    The Users are always right - when I'm not wrong!

Viewing 15 posts - 31 through 45 (of 605 total)