Forum Replies Created

Viewing 15 posts - 2,236 through 2,250 (of 2,387 total)

  • RE: Cannot view SQL jobs as sysadmin

    I don't think SQL Server login (SQL Server authentication) has effect to him but if the login is NT login (NT authentication) and I would say yes.

    Can you run sp_helplogins...

  • RE: Cannot view SQL jobs as sysadmin

    Is this particular user's NT login be granted to access SQL Server without 'sa' right outside the LocalSQLAdmins group in your SQL Server?

  • RE: [SQL STATE 4200](Error 3013)

    How large your database is? If you have sufficient disk spaces, You can backup the database to the local disks first and move it to tapes later.

  • RE: Scan Density strategy

    I don't see they are related directly.

    By the way, In order to optimize the database performance, DBCC DNREINDEX should be performed regularly too.

  • RE: ODBC problems after upgrading to 2000

    Upgrade to SQL Server 2000 also upgrades MDAC to 2.6. This may related to your problem. Try to upgrade MDAC component to 2.6 too in your workstation machine which you...

  • RE: “xp_cmdshell” doesn’t work?

    I guess you are talking about security patch ms02-061 for SQL Server 7.0. I installed it to two machines and have no issues.

    Before you apply the patch, you must install...

  • RE: “xp_cmdshell” doesn’t work?

    Better find out where it is. It should be in master database.

  • RE: “xp_cmdshell” doesn’t work?

    Do you have proper permission? Execute permissions for xp_cmdshell default to members of the sysadmin fixed server role.

    Try to login as 'sa' and see whether you still have same problem.

    ...

  • RE: Failing to restore my differential backup

    Can you post your SQL statement for the restoration?

    You should restore full database with 'norecovery' option and then restore the differential backup with 'recovery' option.

    For example,

    restore database pubs from disk...

  • RE: SQL Server Datafiles

    Shutdown application, detach the database, move the database files to new location and re-attach the database.

    If you want to move SQL Server system files, you have to uninstall SQL Server...

  • RE: MSDE and Service Pack 3

    I have same problem. Can you post more details information. Thanks.

  • RE: Scan Density strategy

    Quoted from BOL.

    "fill factor Option

    Use the fill factor option to specify how full Microsoft® SQL Server™ should make each page when it creates a new index using existing data. The...

  • RE: Scan Density strategy

    Don't replace the 'IndexFillFactor' with 0

    Here it is.

    select INDEXPROPERTY (1109578991, 'PK__BSKT__52AE4273', 'IndexFillFactor')

  • RE: Scan Density strategy

    Can you run select INDEXPROPERTY (object_id('yourtablename'), 'yourclusterindexname', 'IndexFillFactor'). Sorry for gave you wrong syntax.

    Use sp_helpindex yourtablename to get cluster index name

  • RE: Scan Density strategy

    What is the fill factor setting? You may consider adjustmnet of fill factor for this table alone.

    Run sp_configure to see the server wide setting for fill factor.

    select INDEXPROPERTY (YourTable_ID ,...

Viewing 15 posts - 2,236 through 2,250 (of 2,387 total)