Forum Replies Created

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

  • RE: Slow Performance after side by side SQL Server upgrade from 2005 to 2008 R2

    Tune the Instance PARAMETER first

    ===========================

    Give Maximum RAM to SQL Server 12 GB

    Set Maximum Worker Thread to 574 (Recommanded by Microsoft)

    Set Boost SQL Server Priority

    Set Network Packet size increase from 4096...

  • RE: Trying to connect SQL Server 2008 64-bit to Oracle 10g

    Install Oracle Instant Client for windows server 2008 64bit on the Server where SQL Server 2008 installed then create the DSN and then create the linked Server with OLE with...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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 |...

  • 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

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

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