Forum Replies Created

Viewing 15 posts - 286 through 300 (of 490 total)

  • RE: respond slow

    First check the same query on the server side SSMS(SQL Server Management Studio)

    if resposnse is good then check the query on the client side with the SSMS(SQL Server Management...

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

    My Blog
    www.aureus-salah.com

  • RE: Problems with SQL Server Agent

    Give SQL Server Agent service account rights to access the particular file on the Server

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

    My Blog
    www.aureus-salah.com

  • RE: migration from 2000 to 2008 with database mail

    you can configure multiple email accounts on SQL Server Database Mail and then send emails with different email account at a time

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

    My Blog
    www.aureus-salah.com

  • RE: Copy database in sqlserver 2008

    How much database size ? best way is to take a backup and then restore on another server

    you have to define the sharing path of the source database files as...

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

    My Blog
    www.aureus-salah.com

  • RE: Software Protection Platform Service

    check SQL Server services account ,these service accounts have administrative rights

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

    My Blog
    www.aureus-salah.com

  • RE: Log File Location

    yes this report also available at the same process which one i have mentioned in the previous answer

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

    My Blog
    www.aureus-salah.com

  • RE: Sql server restarted

    Machine is Server Class or Desktop Class ? watch your RAM continously and check twice at which level OS restart it , if at the same level then RAM is...

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

    My Blog
    www.aureus-salah.com

  • RE: Can not start the SQL Server Agent

    check the SQL Server instance and agent service account are enable or these service accounts have administrative rights or not ?

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

    My Blog
    www.aureus-salah.com

  • RE: Memory limit < Memory used?

    Thats why I was asking about database purpose or load on it, check it my second statement with question mark if you guys can see

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

    My Blog
    www.aureus-salah.com

  • RE: Batch File For Executing Multiple SP's

    you have to use SQLCMD for multiple scripts

    SQLCMD syntax

    sqlcmd -s ipaddress or DNSname -U username -P password -i "f:\script\executor.sql" -o "f:\script\output.txt"

    open notepad and write this command as your requirement...

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

    My Blog
    www.aureus-salah.com

  • RE: Limiting Resources During Statistics Update

    For Resource Governor information

    http://msdn.microsoft.com/en-us/library/bb933866.aspx

    Example

    CREATE FUNCTION My_Classifer_func()

    RETURNS SYSNAME WITH SCHEMABINDING

    BEGIN

    --workload definition based on login names

    DECLARE @WorkLoadName sysname

    IF SUSER_SNAME()= 'admin'

    BEGIN

    SET @WorkLoadName='AdminUsers';

    END

    --workload definition based...

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

    My Blog
    www.aureus-salah.com

  • RE: Finding SQL Server downtime

    SELECT create_date

    FROM sys.databases

    WHERE name='tempdb';

    you can check with Tempdb because tempdb recreate when SQL Server service started and then create a sample table with datetime column only and schedule it on...

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

    My Blog
    www.aureus-salah.com

  • RE: Log File Location

    Just right click on the Instance and then generate the SCHEMA CHANGES Report as shown in the figures

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

    My Blog
    www.aureus-salah.com

  • RE: Error setting recovery model in maintenance plan?!

    Do you have any changes in the backup plan like TAPE backup running at the time of your maintenance plan ?

    Check the Schedule time of Backup and Maintenance plan job...

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

    My Blog
    www.aureus-salah.com

  • RE: Auto growth for Transaction Log

    Your autogrow increment must be large enough to avoid the performance penalties.The exact value to use in your configuration setting and the choice between a percentage growth and a specific...

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

    My Blog
    www.aureus-salah.com

Viewing 15 posts - 286 through 300 (of 490 total)