Forum Replies Created

Viewing 15 posts - 3,091 through 3,105 (of 3,232 total)

  • RE: Trigger: Special attempt

    Because you will need to know each tables archive table in order to create the triggers, I don't see a way to build one trigger and have it work for...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: TSQL question

    declare @RowData varchar(100)

    SET @RowData = 'http://www.google.com/intl/en_ALL/images/images_hp.gif'

    PRINT SUBSTRING(REPLACE(@RowData,'http://',''),1,(CHARINDEX('/',REPLACE(@RowData,'http://',''),1) - 1))

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Trigger: Special attempt

    Are you planning on having one archive table for each of your core tables, or one archive table that needs to house all inserts to all 300 tables?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Alert on database space issue in SQL server 2000

    It sounds like you've got a problem with inaccuracies in your indexes.  Is your application frequently dropping and adding indexes? 

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Problem with xp_cmdshell and VBscript

    What type of login are you using to call xp_cmdshell in SQL Server?  Is it a SQL Server login, or are you using a domain account?  If this is permissions,...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Internal SQL Server Error- HElp Urgent!!!!! SQL 2000/Win3K

    What is the error?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Problem with xp_cmdshell and VBscript

    Have you tried to redirect the command shell output to a file?  This could give you some possible error messages to look at.  If it is permissions related, you may...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Create Format files...

    I know that you can use BCP to generate a format file.  Since BCP is a command line utility, you may want to try to generate an input file programatically. ...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Tape backups....

    I think that depends on how often your network guys are performing their file system backups.  I would want the backup on tape, whether it be part of a file...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: need script to kill user SPIDS

    You can kill the processes all at once using EM.  If you right-click the DB and select Detach, you can clear all of the database connections there.  If you do...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: When to use a Named Instance

    It looks like you've covered many of the reasons when to use a named instance.  Other reasons could be security/permissions reasons where you want the SQL Server service account to...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: User security set up

    select name, createdate from sysusers where issqluser = 1

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: How many databases in a maintenance plan???

    Scott does bring up a good point regarding scheduled backup times.  I still don't like the idea of having a problem with one database that affects all of the others in...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Error Description:External Table is not in the expected format

    It sounds like this may be a datatype issue.  Make sure all of your datatypes in your SQL Server table match the data type and length of the incomming data. ...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: DTS with variable filenames and variable columns?

    jeffroyal's method for renaming the file to the source filename that your DTS task is expecting should work fine.  As far as only importing certain columns, I believe that you...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 3,091 through 3,105 (of 3,232 total)