Forum Replies Created

Viewing 15 posts - 2,446 through 2,460 (of 2,486 total)

  • RE: Detecting comms failure connecting to AS/400

    Can you use ping via ExecuteProcess Task or xp_cmdshell?

    Thanks

    Phill Carter

  • RE: Formal Design Methodologies

    The term "Formal Design Methodologies" would include things like database normalization techniques, process and data modelling. What gets done in what order, etc...

    Something I found useful to get familar with...

  • RE: SQL Procedure Question

    You need to check the @@ERROR variable.

    Eg:

    
    
    fetch next from cur into @Var1
    while @@fetch_status = 0
    begin
    update table1 Set Field1 = @Var1
    if @@ERROR <>...
  • RE: Hide password in connection string ?

    The best method is to use NT Authentication then there is no userid or password to worry about.

    I set my ADO Connection string up as a Global Variable. The userid...

  • RE: ETL tool encapsulating DTS ?

    Check the SQL Server Accelerator for BI from Microsoft.

    http://www.microsoft.com/solutions/BI/nextsteps/default.asp

    Haven't tried it myself but it's supposed to build the DTS packages required for loading a Datawarehouse.

    Thanks

    Phill Carter

  • RE: changing DTS StepName logging

    You can modify the Step name via Disconnected Edit. Be careful, you can screw things up if you forget to change one property. eg: The task name is also a...

  • RE: Record Count from BulkInsert

    quote:


    What about @@rowcount along with the batch size


    Let me explain my situation.

    I have a file...

  • RE: Record Count from BulkInsert

    quote:


    Have you tried using the Batchsize option.I think if you use this option with a specific size(1000) you can findout how many...

  • RE: Record Count from BulkInsert

    quote:


    I think @@rowcount should give you the number of records inserted.

    begin tran

    select * into authors2 from authors

    select @@rowcount

    commit tran


    November 11, 2002 at 3:49 pm

    #441033

  • RE: dtsrun utility

    What is the stored procedure that is executing the DTS package?

    The NULL return is probably coming from it.

    Thanks

    Phill Carter

  • RE: SQL Wishlist ??

    quote:


    If you have ideas you can send them directly to MS - sqlwish@microsoft.com.


    I know the...

  • RE: Loading a Series of Flat Files

    quote:


    Thanks for your comments - some answers: -

    I used goto labels because my original solution required the logging of a specific error...

  • RE: Loading a Series of Flat Files

    Good article. Always like articles with code that I can play with

    One comment I would make though is that I'd eliminate the GOTO's by using positive...

  • RE: Hidden Connections

    In packages that need to be migrated to differnent servers, I set the connection and task properties dynamically using "Dynamic Properties Task" and global variables.

    The Global Variables are passed to...

  • RE: Shrinking Transaction Log File

    Ron

    Never had much luck with shrinking the log file under SQL7. In SQL2K it's a bit better, but not that much. You can play around with the virtual logs files,...

Viewing 15 posts - 2,446 through 2,460 (of 2,486 total)