Forum Replies Created

Viewing 15 posts - 271 through 285 (of 490 total)

  • RE: My database was set to 10% autogrow & now it's HUGE. Can I fix this?

    First shrink the database to release the space for Operating System at free work hours and truncate the size of log ,then this process will release the unallocated space

    Shrink Database...

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: sql server memory

    have you defined AWE in SQL server ?

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Transaction Replication Deadlocks

    Check this query for the missing Indexes on the primary Server as well as secondary Server on the specific database

    Select * from sys.dm_db_missing_index_details

    How much RAM have you allocated for the...

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: respond slow

    First will tell you about the missing indexes on the database and the other one will tell you about resources usage of queries,locks,wait etc,these queries are not harmfull just execute...

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Connecting to SQL Server through a firewall to a virtual server by IP/Port

    Go to SQL Server Configuration Manager then check all protocol are enabled on the instance side as well as native client side as mention in the figure

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Added a Clustered index On ID cloumn but not ordered? Why?

    Create all non-clustered index scripts and then drop it all then create clustered index then create non-clustered index after clustered index

    Note It when we create clustered index then non-clustered automatically...

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Added a Clustered index On ID cloumn but not ordered? Why?

    Data Type of ID column is ?

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Security Best Practice

    If you dont want to require an audit and specific user actions then create SQL server role for the specific group as SALES and create sales user and assign this...

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Index Fragmentation

    Did you define the PAD_INDEX option ON and fillfactor same as before ? what is the Server default fillfactor configurations ?

    check the default configurations of the Server or fillfactor by...

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Which index will get the prority and why?

    Note it when you create the Cluster index then non-clustered index on the same table will be drop and then recreate autmatically

    It depends on the query you have provide if...

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Manage logins and users to log shipping secondary server

    When your logshipping fail and you want to up the secondary node then you will pass this statement on the secondary node

    Restore database [your database name] with recovery;

    If database have...

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Question about Set Statistics IO ON

    check with

    SP_WHO2

    check with also

    Select st.text,sp.* from sys.sysprocesses sp

    cross apply sys.dm_exec_sql_text(sp.sql_handle) st

    where sp.status != 'sleeping'

    order by sp.cpu desc

    paste your sp on the query analyzer on SSMS and then click on...

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Transactional replication 2008 to 2000

    Install Express Edition of SQL Server 2008 instead of SQL Server 2000 and test replication on it if problem still there then we can provide solution

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: Question about Set Statistics IO ON

    because your SP is using multiple queries in it,it tells you statistic for every query

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • RE: What diference between sys.sysxyz and sys.xyz

    sys.databases is a new catalogview and sys.sysdatabases is for backward compatibility for SQL Server 2000 and this will be remove in the future release

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

Viewing 15 posts - 271 through 285 (of 490 total)