Forum Replies Created

Viewing 15 posts - 2,161 through 2,175 (of 2,387 total)

  • RE: Setup Maintenance Plan for clustered SQL

    No. It is same as how you create the maintenance plan in non-cluster server.

  • RE: How to SEE inside the Database ?

    Try sp_tables_ex, sp_columns_ex, sp_primarykeys if the remote SQL Server has been configured as linked server.

  • RE: disable debugging on production box...

    As I remember, During the client tools installation, you have options not to install debuger component. In your case, you may have to reinstall SQL Server.

  • RE: SP3 and MDAC 2.6

    MDAC is sharing resource in the system and it can't be reversed back to old version by reinstall sp2.

    Check following link for how to rollback MDAC. This article was authored...

  • RE: Database Growth -SQL Server 2000

    We are ruunig SAP in SQL Server 2000 with average 20GB database growth per month. For you situation, you better send SAP message to inquiry or check SAP notes.

    Do you...

  • RE: Free Blocks

    Check DBCC DBREINDEX command.

  • RE: Linked Server Question

    You have to install Oracle client in SQL Server machine and ensure the SQL Server box is able to access Oracle database just like any your Oracle workstation.

  • RE: Getting column names from a linked server

    Maybe you can try this command.

    EXEC sp_columns_ex 'yourlinkedservername', 'yourlinkedtablename'

  • RE: Why does my OS type job fail?

    Depend on what kind of jobs did you run? It might related to NT permission, SQL Server Agent service account or Agent Proxy account and those account's privilege. Can you...

  • RE: Running DTS Job as scheduled task

    Try to configure SQL Agent account with your NT login and should work.

    SQL Agent property --> Job System --> uncheck 'Non-SysAdmin job step proxy account' --> click 'Reset Proxy...

  • RE: Error 14274 Cannot Add, update or delete jobs

    After update that column with current SQL Server name, you will be able to modify the jobs.

    sp_configure 'allow update', 1

    go

    reconfigure with override

    go

    use msdb

    go

    update sysjobs set originating_server = 'yourSQLServername'

    go

    sp_configure 'allow update',...

  • RE: Connecting an access (2000) database

    Is the Access database secure database? Do you place 'admin' as remote login with correct password? Where did you get this error message, EM or QA?

  • RE: Error 14274 Cannot Add, update or delete jobs

    Check whether the originating_server name from sysjobs table is different than SQL Server name, If it does, you have to update this column with SQL Server name in table sysjobs...

  • RE: Version 8.00.0444

    Call Microsoft to request that hotfix and it looks like this hotfix is already be included in service pack 2 according to the version.

  • RE: Converting a SQL7 db to a SQL2000 db

    Which option did you choose on 'Recovery completion state' when you restored the full backup?

    Did you check 'force restore over existing database'?

    Edited by - Allen_Cui on 02/28/2003 10:18:52 AM

Viewing 15 posts - 2,161 through 2,175 (of 2,387 total)