Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 2,487 total)

  • RE: Copy Columns Task

    How many rows are you importing? How long is it taking? What version of SQL are you using?

    What other methods of importing have you tried?

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: Denormalised -> Normalised

    quote:


    Please clarify re don't see all the products. When I run the sql I get one line per row in Table -...

    --------------------
    Colt 45 - the original point and click interface

  • RE: using a varible in an insert operation

    Are you sure this the complete trigger statement?

    What sets the @cName and @cType variables?

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: How can I make a DTS step optional?

    I'd go with Disabling the steps and setting the Precedence details. At least that way you can be sure that things will run in the right order.

    I've had some weird...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Reporting tool for MS SQL SEREVR

    Try this list

    http://www.knowledgestorm.com/search/keyword/sql%20server%20reporting%20tools/iickwd/Sql%20Server%20Reporting%20Tools/

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: Text Qualifiers

    You could probably try an ActiveXScript in the transformation to build the output row prior to writing it to the file.

    Something like,

    
    
    Function Main()

    Const sQt = """"...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Changing Export Text File Names

    Are you sure you have the name of the connection right?

    The line

    Set oConn = DTSGlobalVariables.Parent.Connections("Text File (Source)")

    is looking for a connection called "Text File (Source)"....

    --------------------
    Colt 45 - the original point and click interface

  • RE: DTS Package Hung

    I don't think you'll find anything that automated. Restarting the job would mean it has to finish first, either successfully or not.

    If package logging has been turned on, you could...

    --------------------
    Colt 45 - the original point and click interface

  • RE: meta data for a report

    There's nothing provided to extract any meta data.

    You could put together a little ActiveXScript to extract the info from the Transformations collection of the DataPump task.

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: Executing DTS using T-SQL.......

    You can also execute the package using the sp_OA stored procedures as shown in the following article.

    http://www.databasejournal.com/features/mssql/article.php/1459181

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: Converting varchar to datetime in Active X transfo

    Instead of the Cast statement, use DateSerial. I'd also use the full 4 digit year.

    So your statement would end up like,

    DTSDestination("SOL_BIRTH_DT") = DateSerial( Left(DTSsource("SOL_BIRTH_DT"),4), mid(DTSsource("SOL_BIRTH_DT"),5,2), right (DTSsource("SOL_BIRTH_DT"),2))

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: Help on SET statements

    What are you trying to achieve here? The SET statements in your example wouldn't produce anything because they are after the CREATE command.

    Setting STATISTICS TIME and NOCOUNT in the query...

    --------------------
    Colt 45 - the original point and click interface

  • RE: DTS - Restart from Failed Step

    You would need to handle the restart point within the child packages.

    Basically, if the package fails you log what step it failed at. On restarting you check if there was...

    --------------------
    Colt 45 - the original point and click interface

  • RE: logical and physical modeling

    You've already got the hard part with the logical model. The Physical model is the database representation of the logical model. It defines how the entities and attributes map into...

    --------------------
    Colt 45 - the original point and click interface

  • RE: executing an sp within a trigger

    Probably not really addressing you real problem, but based on your code, why not use a computed column for the staff_random_num column?

    Then you don't need proc or trigger.

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 2,386 through 2,400 (of 2,487 total)