Forum Replies Created

Viewing 15 posts - 2,266 through 2,280 (of 2,486 total)

  • RE: @@LOCK_TIMEOUT

    Check Books Online. A value of -1 means that the lock timeout hasn't been set for the current session.

    Hope this helps

    Phill Carter

    --------------------

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

  • RE: Where to get Enterprise Manager

    Easiest way is to get an evaluation copy of SQL Server (either from Microsoft or buy one of the many books that include eval copies). Then just install the client...

  • RE: Exporting Login script to a text file

    Ok there is two things you'll need to do.

    1) Replace your sp_help_revlogin procedure with this one,

    quote:


    IF OBJECT_ID ('sp_help_revlogin') IS NOT NULL

    ...

  • RE: Exporting Login script to a text file

    You'll need Database and Text file (Destination) connections. Then select both connections and click the Transform Data button to create a Transform Data Task.

    Double click the Transform Data Task to...

  • RE: Executing dtsrun from a .cmd file

    Sheri

    Maybe you could post the batch file so we can look at it.

    Generally, when I'm running scheduled DTS packages they are run in the security context of the SQL Agent...

  • RE: skipping datapump

    Well if you haven't made any changes to the package. You'd best check what else has changed in terms or security, structure, server and database settings.

    What is the ODBC source?...

  • RE: DTS Import Fixed-Length ASCII File Problem

    Now that is strange because I tested this on my server here. I created a text file in Notepad with 5 lines of varying lengths, and made sure the first...

  • RE: DTS Import Fixed-Length ASCII File Problem

    All you need to do is have data, not spaces, in columns 431-447 the first time you define the columns and transformations.

    Subsequent eecutions of the DTS package will just chop...

  • RE: dBase import - null dates problem

    Have you tried using the ISDATE() function instead of ISNULL()?

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: Trapping Errors in DTS (7.0)

    With SQL 7, probably your best bet is to turn on the logging, which will log the messages to a file. Then on failure pickup the file that is created...

  • RE: Transform Sequence

    Sounds a bit complex.

    I'd just import the data you have straight into a staging table. Then run couple of stored procedures to update required fields in the staging table. Then...

  • RE: DTS Text File Import

    Check out the following

    http://www.sqldts.com/default.aspx?6,103,211,0,1

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: Deleting a connection from a package

    Have you tried creating a new connection with the same name and then deleting it again?

    Also, try the following. http://www.sqldts.com/default.aspx?6,222,253,0,1

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click...

  • RE: "OR" workflow dependencies

    Doing it via the workflow, there is no "OR" in DTS.

    You'll have to have an "On Failure" branch with the task you want to execute for each of the ten...

  • RE: Indexing Views

    quote:


    I'm a rank novice, so the problem I have is that after I've created views in SQL 2000, sometimes Enterprise Manager will...

Viewing 15 posts - 2,266 through 2,280 (of 2,486 total)