Forum Replies Created

Viewing 15 posts - 451 through 465 (of 490 total)

  • RE: Create index script for existing index

    PK understanding is PRIMARY KEY and if you see prefix like PK in a table indexes then its mean table have a PRIMARY KEY with clustered Index.when we create a...

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

    My Blog
    www.aureus-salah.com

  • RE: Chasing down the cause for sudden slowdown in backups

    Database Size ?

    Log Size ?

    you are taking backup as Network ,Tape or SAN

    example

    Network Backup like

    \\servername\sharedfolder\filename

    this storage is SAN , NAS or network path , IF this SAN did you...

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

    My Blog
    www.aureus-salah.com

  • RE: Database Response is too slow

    Total CPU physical and logical ?

    Total Ram ?

    Total SQL Server RAM ?

    OS 32bit or 64bit ?

    check this query

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

    cross apply sys.dm_exec_sql_text(sp.sql_handle) st

    where cpu >1000

    order by cpu...

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

    My Blog
    www.aureus-salah.com

  • RE: Files and filegroup

    There is no difference betweem mdf and ndf,Its just for understanding this is PRIMARY file mdf and then others are SECONDARY like ndf, you can create mdf also both files...

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

    My Blog
    www.aureus-salah.com

  • RE: SQL log file grows huge

    create checkpoint then take log backup and then truncate log files

    CHECKPOINT;

    BACKUP LOG [TEST] ......

    GO

    DBCC SHRINKFILE('Log file 1 name',TRUNCATEONLY);

    DBCC SHRINKFILE('Log file 2 name',TRUNCATEONLY);

    GO

    take orignal and final backup some other place then...

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

    My Blog
    www.aureus-salah.com

  • RE: Data Move

    1-Backup and Restore most reliable

    2-Bulk Insertion fastest

    you want to copy in 1 go there is no need of log shipping

    Regards,

    Syed Jahanzaib Bin Hassan

    MCTS | MCITP | OCA | OCP |...

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

    My Blog
    www.aureus-salah.com

  • RE: Files and filegroup

    dont create more files in a single head or single drive

    |Regards,

    Syed Jahanzaib Bin Hassan

    MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog

    http://www.aureus-salah.com

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

    My Blog
    www.aureus-salah.com

  • RE: How to debug jobs?

    check the SQL Server agent service account it is working or not if you are using domain account for this service

    is SQL Server machine name is changed after DNS changed...

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

    My Blog
    www.aureus-salah.com

  • RE: Data Move

    1-Take a full backup and restore this database with different name

    2-USE SQL Server IMPORT/EXPORT Utility

    3-Write a simple ETL process in SSIS(SQL Server Inegration Services)

    4-If these are simple tables then use

    INSERT...

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

    My Blog
    www.aureus-salah.com

  • RE: Weird error in an otherwise happy, mature Maintenance Plan - BACKUP LOG cannot be performed because there is no current database backup

    First of all apply Service Pack of SQL Server 2008 if you are not using R2,If your Maintenance plan execute on the Integration Service of SQL Server so that could...

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

    My Blog
    www.aureus-salah.com

  • RE: Folder Structure of logs and Databases.

    First of all you should know the Server specification as

    TOTAL CPU physical and logical

    TOTAL RAM

    TOTAL SQL SERVER RAM

    OPERATING SYSTEM Version and 32bit or 64bit

    TOTAL drivers not Partition

    INSTANCE tuning is...

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

    My Blog
    www.aureus-salah.com

  • RE: 2008 R2 Upgrade Advisor Error - ActiveX Component can't create Object

    Data Access Objects (DAO) is not properly registered.

    -or-

    One or more references are missing.

    -or-

    There is a utility database reference that is not valid.

    -or-

    You do not have the required permissions for required...

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

    My Blog
    www.aureus-salah.com

  • RE: SQL 2008 r2 default instance connection problm

    Default name and default port do not required to mention in the connection you can use (.),LOCAL and System name only

    You should first check the connectivity on the same server...

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

    My Blog
    www.aureus-salah.com

  • RE: Database hang after some time

    1-Check this SP_WHO2 for Processes which those are going to hang as on runnable state or suspended

    2-Query

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

    cross apply sys.dm_exec_sql_text(sp.sql_handle) st

    order by sp.cpu desc

    TOTAL CPU physical and...

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

    My Blog
    www.aureus-salah.com

  • RE: Weird error in an otherwise happy, mature Maintenance Plan - BACKUP LOG cannot be performed because there is no current database backup

    Do you have any history purge job and did the last full backup done successfully

    Regards,

    Syed Jahanzaib Bin Hassan

    MCTS|MCITP|OCA|OCP|OCE|SCJP|IBMCDBA

    My Blog

    http://www.aureus-salah.com

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

    My Blog
    www.aureus-salah.com

Viewing 15 posts - 451 through 465 (of 490 total)