Forum Replies Created

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

  • RE: Trigger: Special attempt

    I'm sure you noticed, but the script that I posted will generate trigger code for all of your user tables.  If you need to exclude certain tables, you can add...

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

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

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

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

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

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

    What is the error?

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

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

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

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

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

  • RE: User security set up

    select name, createdate from sysusers where issqluser = 1

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

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

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