Forum Replies Created

Viewing 15 posts - 106 through 120 (of 222 total)

  • RE: Pumping data to Text Files

    Something like this should work ok:

    Dim oPKG

    Dim oConnection

    Dim sNewFilename

    Dim sDatetime

    Set...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Pumping data to Text Files

    This should be ok:

    1: In the DTS package have an initial ActixeX script step which assigns the filename, then schedule the DTS job.

    2: You could add a column to the...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: TRANSLATE Function

    Gotya - could be a useful distinction.

    Paul Ibison

    Paul.Ibison@btinternet.com


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: TRANSLATE Function

    Isn't this the same as the T_SQL function REPLACE?

    Paul Ibison

    Paul.Ibison@btinternet.com


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Transaction Log Full

    Thanks Steven - that's the first time I've heard a decent explanation of that - one for the memory bank.

    Paul Ibison

    Paul.Ibison@btinternet.com


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Transaction Log Full

    backing up the transaction log removes the inactive portion but does not physically reduce the file size - use DBCC SHRINKDATABASE or DBCC SHRINKFILE to do this. If this is...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Anything like Oracle's "Create Table As Select"?

    This will work ok, but to select into a permanent table, execute sp_dboption to turn on the select into/bulkcopy option before executing the SELECT statement. :

    SELECT a.division

    b.department_name

    c.employee_name into dimension...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Log shipping & Recovery model

    Hi Mitra,

    I use log shipping as part of a solution to have a standby server running SQL 7 while we start running SQL 2000 in the live environment. A few...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: migration plsql to t-sql

    Don't know of any tools for this, but there are documents to help on Technet:

    http://www.microsoft.com/technet/treeview/default.asp?url=/TechNet/prodtechnol/sql/reskit/sql2000/part2/c0761.asp

    I converted an Oracle system last year. Seem to remember that there were far less datatypes...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Loading MDF/LDF files

    The unicode locale id is the character set (1033 = English US, 2057 = English UK).

    This shouldn't be a problem as indicated by the severity of the warning (the message...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Loading MDF/LDF files

    First check the error logs. In EM, open the Management folder, SQL Server logs, Current and locate the reference to the suspect db - this might be helpful.

    For reattaching, Query...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Loading MDF/LDF files

    Sounds nasty! I'd

    (a) check the SQL error log file for any info about the suspect status.

    (b) Am not sure how you added the mdb database to sql server, but...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Loading MDF/LDF files

    These files are enough, but 'Suspect' could mean a few different things, so initially we probably need a little extra info:

    Did you detach the database before copying it, and have...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Strict Database Standards and Conventions

    Thanks for the answers guys.

    Steve: the direction you mention for TSQl sounds exciting, although presumably it'll be a couple of years before this comes about.

    Mattias: my FK question really...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Stored procedure into a table?

    UDFs (user defined functions) could be used instead of sps. Alternatively (and less preferably) OpenDataSource or OpenRowSet would work.

    Paul Ibison

    Paul.Ibison@btinternet.com


    Paul Ibison
    Paul.Ibison@replicationanswers.com

Viewing 15 posts - 106 through 120 (of 222 total)