Forum Replies Created

Viewing 8 posts - 1,171 through 1,179 (of 1,179 total)

  • RE: How can I tell what transaction level SQL statements are running under with Profiler and dead lock trace with SQL Server 2000

    SQL Server 6.5 was having pagelevel locking but SQL Server 7.0 onwards sql server is having rowlevel locking. This locking is dynamic and depend on Isolation level you are using...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Table defragmentation in SQL 2000

    As far as I know only DBCC INDEXDEFRAG utility is available for defrag of Indexes which is used for both cluster & non-cluster indexes in SQL Server 2000.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Using local disk for tempdb in failover cluster?

    It won't work. While failover occurs at that time tempdb is on node1 d:\Tempdb folder. But Tempdb on node2 will be created only when you will restart the sql server....

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Deny Access to a Database

    Sysadmin can perform any activity in the sql server installation hence it's not possible.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Using local disk for tempdb in failover cluster?

    In the cluster environment you can't put tempdb on the local drive. If you will put the tempdb on local drive of node1 when the failover happen tempdb location on...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Read file system directory & files with T-SQL

    Execute the following command which will give you idea about your database files. Execute the query with the respective database to find the related files.

    select name, filename from sysfiles

    Hope this...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: MS SQL SERVER 2005 Trail Version Software

    Use following link to download Express Edition of sql server 2005.

    http://msdn2.microsoft.com/hi-in/express/bb410791(en-us).aspx

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Terabyte datacenter maintenance

    In addition to all posted Reply...

    Looks SAP/VLDB Database is very important to the Organisation. Hence you need to chalkout DR (Disster Recovery) Plan on the priority.

    Log shipping would be ideal...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

Viewing 8 posts - 1,171 through 1,179 (of 1,179 total)