Forum Replies Created

Viewing 15 posts - 2,281 through 2,295 (of 2,487 total)

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

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

  • RE: Down Load text file from FTP thro' DTS

    Take a look at the following articles, they'll give you a start.

    http://www.sqldts.com/default.aspx?6,102,231,0,1

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

    http://www.sqldts.com/default.aspx?6,101,200,0,1

    Hope this helps

    Phill Carter

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

    Colt 45 - the original point and click interface

    Edited by - phillcart...

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

  • RE: So what is developer security best practice?

    I don't think there is any real "best practice" as such.

    A setup that has worked is giving Developers/Project Teams their own SQL Servers and sa rights to those servers. If...

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

  • RE: Identity Increment Recycles?

    SQL will not recycle IDENTITY values.

    There was an article somewhere that did all the math to work out how long it would be before each datatype ran out of identity...

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

  • RE: Syntax Help Needed

    You can't put the INSERTS and DELETES inside a CASE statement.

    Is there a link between tblRCStudentGrades and the other tables? If so you could do it this way,

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

  • RE: Set Global Variables in DTS package fail

    I couldn't find anything about 'dispatch' either, that was why I resorted to deleting the variable and recreating it.

    Generally it appeared when I was assigning a value to a variable...

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

  • RE: Unable to use BETWEEN with date value!

    quote:


    The problem is when I run a simple query on the table like

    SELECT * from table

    WHERE when_dt ='03/03/2003'


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

  • RE: stored procedure parameters

    Do it like this,

    Create Procedure test

    @start int,

    @end int = NULL

    Begin

    if @end is Null

    @end = @start

    Remainder of sp ...

    Hope this helps

    Phill Carter

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

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

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

  • RE: Set Global Variables in DTS package fail

    Check the Global Variable definition. A couple of times I've had variables with the datatype set to dispatch with the value set to <not displayable>. The only way I was...

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

  • RE: edit server network library configuration

    Not to sure about MSDE.

    The EXE's for the connection utilities are usually stored in c:\winnt\system32. Look for something called svrconfg.exe, or srvconfg.exe

    Failing that, you can always edit the registry. Look...

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

  • RE: DTS Step doesn't execute

    What sort of "macro" are you running? Maybe it can be changed to write out status messages?

    Hope this helps

    Phill Carter

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

    Colt 45 - the original point and click interface

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

  • RE: To Run An MS Access Macro From SQL

    Don't know if this helps any, but maybe you could execute it by creating a Access object and referring to the macro via that object.

    Here's and example of creating an...

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

  • RE: Run-time error 75

    Ok then, so for the best of both worlds, how about,

    
    
    OPTION EXPLICIT
    '********************************************
    ' Visual Basic ActiveX Script
    '********************************************
    Function Main()
    < ... snip ... >
    sFileName = sPath & ReturnMonth(sNow) &...

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

  • RE: Import Failed

    The Wizard usually includes a create table step. If the table already exists, you should remove the create table task from the package.

    Hope this helps

    Phill Carter

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

    Colt 45 - the original...

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

  • RE: DTS Lockup. No errors

    Are you running on SQL 2000? If so, turn on package logging and see if that gives you any info.

    Hope this helps

    Phill Carter

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

    Colt 45 - the original point and click...

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

  • Viewing 15 posts - 2,281 through 2,295 (of 2,487 total)