Forum Replies Created

Viewing 15 posts - 1,531 through 1,545 (of 2,636 total)

  • RE: Looking for SQL 2005 KILL SPID script

    1. In general, you can't update system tables.  According to BOL, they may be accessed under certain circumstances using a "Dedicated Administrator Connection", but it's not recommended.  See "Using a...

  • RE: Management Studio Bug

    Oh, now I see what you're talking about.  I do have the same problem as long as the DTS Designer is open.  I've now idea how to get around that,...

  • RE: Connection issue

    I want to echo bledu's question and also ask if the user could ever login to the SQL 2000 instance.  If no, make sure his login has been added and...

  • RE: Looking for SQL 2005 KILL SPID script

    You can create the stored procedure in master if you qualify sysprocesses and sysdatabases with the schema sys.  They are system views in SQL 2005 rather than system tables i.e....

  • RE: Restore older version of master db and user files to a new instance of SQL Server 2000

    Personally, I wouldn't attempt to restore a backup of master on a new instance.  I'd just install the named instance, restore backups of the user databases and recreate logins from...

  • RE: Management Studio Bug

    Nope.  It works just like DTS Designer in SQL 2000.  Strange problem.

    Greg

  • RE: DTS Security

    Hi Carol,

    It depends on the security settings in msdb, particularly EXECUTE permissions on stored procedures that work with DTS packages i.e. sp_add_dtspackage, sp_drop_dtspackage, sp_enum_dtspackages, etc. 

    My suggestion is to go...

  • RE: Copy_Only like option for SQL Server 2000

    No, Copy-only is a new feature in SQL 2005.  I think the closest you'd get in SQL 2000 would be to use BCP or DTS to export data. 

    Greg

  • RE: Empty DTS packages

    Lowry,

    Are the packages stored in Meta Data Services?

    Greg

  • RE: Using sp_help_job from within a TSQL procedure

    You can create a temporary table in the stored procedure that has columns for the results of sp_help_job.  Then, insert the results of sp_help_job into the temp table.  You can...

  • RE: SQL2000 download that includes SP4 and Hotfix

    Service packs are always separate downloads.  I've never seen one that included the original server components so you're stuck with installing them sequentially.

    Greg

  • RE: Database Roles

    "add your users to the db_owner role..."

    Come on.  The guy just wants to create and execute stored procedures.  He doesn't need all the permissions that the db_owner role grants.

    Greg 

  • RE: SQL Agent Log

    sp_cycle_errorlog cycles the SQL Server error log, not the SQL Server Agent error log.

    Greg

  • RE: Need Sysusers Information

    Here's a query I've used:

    --This script list all the users defined for each database on the server, it gives --the database name, the user name, the role membership, and the...

  • RE: SQL Agent Log

    It's normal behavior for SQL Server Agent to keep 9 archived error log files in addition to the current log.  It opens a new one when the Agent service is...

Viewing 15 posts - 1,531 through 1,545 (of 2,636 total)