1. Job Status not reporting in Enterprise Manager (SQL Server 2000)
Jobs created with by Server Administrator Account privilege does not show current execution status. But when sp_help_job is run from query analyzer the current_execution_step shows 1 -- currently running. This issue started occuring gradually and now happens on a constant basis. However if I log onto to the Windows 2000 server directly using terminal services or console I see the running jobs status 95 percent of the time. I use trusted connection. SQL Server 2000..Any ideas.
2. A DTS step freezes (status is just "Executing Job Step 'job name'") - SQL Server DTS
3. Connect to SQL Database on the ISA Server through Ent Manager
4. Connect to SQL Database on the ISA Server through Ent Manager on m
5. Access Denied to WMSDE in SQL Ent Manager
I am attempting to register the WMSDE WSS Database using SQL Server Enterprise Manager, I run through the setup wizard, point to the database, then when it finally tries to connect to the db I receive the error message for access denied. When we first setup WSS we didn't specify an administrator or password, thinking this I had the user that installed WSS try to perform the same method in Enterprise Manager but had no luck. Is there a default admin account that we are missing? It has been a while since he had installed this software and he has probably changed his password (company policy) since that time, could it be looking for his old password even though it is using windows domain auth?
6. Timeouts when running SQL queries in SQL Ent Manager - SQL Server
7. How to move new column to a different position in replicated table using Ent Manager
I have a simple transactional replication test bed set up using SQL Server 2000 and I want to add a column to a table that islocated on the Publisher. After looking thru BOL, I found the "Filter Columns" tab on the Publication Properties dialog box and was finally able to add a new column into this table with the Add Column to Replicated Table dialog. (even tho my T-SQL scripting is real bad!) To test this I added a simple column with a datatype of Int into the table. The add goes fine but the new column gets placed at the bottom of the table column listing. If possible, I would like the new column to be inserted at position 30 in this 50 column table. If I try to move the column using drag and drop in the Design Table dialog and then try to save the table...I get an immediate error: 'OrdMain' table - Unable to modify table. ODBC error: [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot drop the table 'dbo.OrdMain' because it is being used for replication. I am fairly new to T-SQL scripting and if anyone has any Transact SQL script they could share to fill the "Column Definition" area, I would really appreciate it. Here's the default T-SQL (ALTER TABLE) elements that get put in when adding the column: <data_type> DEFAULT <constant_expression> IDENTITY <seed>, <increment> NOT FOR REPLICATION ROWGUIDCOL <column_constraint> Cheers, Bruce McDonald