Forum Replies Created

Viewing 15 posts - 466 through 480 (of 490 total)

  • RE: SQL 2008R2 CLuster won't come online during install

    Check SQL Server service account is enable or not which one you are giving at the time of sql server installation,if this account is disabled then you cant install sql...

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

    My Blog
    www.aureus-salah.com

  • RE: How to add named instance SQL Server 2008 R2 failover cluster to an existing SQL 2008 R2 failover cluster

    Start with clustere installation,it will require new IP and cluster name nothing else DTC and Qurum should be same as Old one

    Accessible as

    CLUSTER IP\NAMED INSTANCE

    CLUSTER NAME\NAMED INSTANCE

    Remotely Access

    CLUSTER IP\NAMED INSTANCE,PORT

    CLUSTER...

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

    My Blog
    www.aureus-salah.com

  • RE: SQL Server 2008 R2 Cluster Installation

    you have required 1 DTC and 1 Qurum in Active\Passive,Microsoft is not providing till any load balancing solution in cluster which one you are saying ACTIVE\ACTIVE,NLB Server is there for...

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

    My Blog
    www.aureus-salah.com

  • RE: MSDTC Configuration

    Best practice for the SAN Partitions are

    DATA 1

    INDEX

    LOG

    MSSQL

    DTC

    QURUM

    you can increase the partition as

    DATA 1

    DATA 2

    INDEX 1

    INDEX 2

    LOG 1

    LOG 2

    BACKUP

    MSSQL(For SQL binaries)

    DTC

    QURUM

    DTC and Qurum should be seperate group

    Regards,

    Syed Jahanzaib...

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

    My Blog
    www.aureus-salah.com

  • RE: Help required for OLTP kind of processing

    Transactional and snapshot Replication is best for your scenerio but mirror cant be use because you cant query to the secondary node if primary node is mirroring , 1 node...

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

    My Blog
    www.aureus-salah.com

  • RE: Restore transaction log backups on an hourly basis leaving database operational

    Transactional Replication is best for your senerio

    Regards,

    Syed Jahanzaib Bin Hassan

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

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

    My Blog
    www.aureus-salah.com

  • RE: Securing default installation of SQL2008 - regarding the public role

    Public Role is just a gateway for the Server and database level after you assign the public role then you assigns other role also

    Regards,

    Syed Jahanzaib Bin Hassan

    MCTS | MCITP |...

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

    My Blog
    www.aureus-salah.com

  • RE: Performance on very large database - Help

    1-Table should have a Clustered Index

    2-Non-clustered Index should be SORT_IN_TEMPDB = ON

    3-create non-clustered with this column also pt03_annomese

    CREATE NONCLUSTERED INDEX IX_SalesOrderDetail_filtered

    ON VIPT_TAB_003 (PT03_R_ABI, PT03_NUM_EFF,pt03_annomese)

    Include (PT03_KEY_RAP,

    PT03_KEY_AN,

    PT03_SKEY,

    PT03_NDG,

    PT03_R_CSER,

    ...

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

    My Blog
    www.aureus-salah.com

  • RE: How it can be done..

    I will continue with PATRICK FIEDLER code

    --create table #tmp(temp varchar(50)) --this table is your permanent table you remove this line

    create table #tbtemp (orderid int identity(1,1), temp varchar(50))

    --insert into #tmp...

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

    My Blog
    www.aureus-salah.com

  • RE: Script mismatch different database

    Use [database name]

    go

    add this in the begining of the code and then check

    Regards,

    Syed Jahanzaib Bin Hassan

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

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

    My Blog
    www.aureus-salah.com

  • RE: Which index run first Clustered index or Non_Clustered index

    Its depend on Execution Plan create by the optimizer which index will be use,It depends which query you are passing to the optimzer just create the query and then check...

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

    My Blog
    www.aureus-salah.com

  • RE: Create index script for existing index

    you can create indexes script by the help of Generating Scripts

    Right click on the desire database and then click TASK then click Generate Scripts,Select all tables then generate only indexes...

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

    My Blog
    www.aureus-salah.com

  • RE: Service Broker queue growing

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

    cross apply sys.dm_exec_sql_text(sp.sql_handle)

    check this query to find out the problem

    Regards,

    Syed Jahanzaib Bin Hassan

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

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

    My Blog
    www.aureus-salah.com

  • RE: Any Alternatives to installing MS Office on SQL server 2008 server

    You can manipulate VBA programming with dotnet and create the DLL and use this dll as a CLR in SQL Server

    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: SSRS Permission Dilemma

    Owner of the Report ?

    Regards,

    Syed Jahanzaib Bin Hassan

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

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

    My Blog
    www.aureus-salah.com

Viewing 15 posts - 466 through 480 (of 490 total)