Forum Replies Created

Viewing 15 posts - 256 through 270 (of 490 total)

  • RE: Troubleshoot DBmail

    check the Service Broker and endpoints

    -- Enable Service Broker:

    ALTER DATABASE [Database Name] SET ENABLE_BROKER;

    -- Disable Service Broker:

    ALTER DATABASE [Database Name] SET DISABLE_BROKER;

    --Check for the specific database

    SELECT is_broker_enabled,* FROM sys.databases WHERE...

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

    My Blog
    www.aureus-salah.com

  • RE: SQL Job Scheduler

    SQL Server Agent Service is available with SQL Server if edition is not express,if you have express edition then go for SQLCMD and then schedule on the OS level

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

    My Blog
    www.aureus-salah.com

  • RE: error in sql job

    Go to SQL Server configuration Manager and then check the Protocols for both Client and instance NAME PIPED is enabled or not,if not then enable it

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

    My Blog
    www.aureus-salah.com

  • RE: get total disk space per instance from within SQL without cmdshell.

    declare @driveName varchar(100)

    declare @query varchar(1000)

    declare @fsinfo varchar(1000)

    set @driveName = 'C'

    set @query ='fsutil volume diskfree '+@driveName+':\'

    set @fsinfo = 'fsutil fsinfo volumeinfo '+@driveName+':\'

    exec xp_cmdshell @query

    exec xp_cmdshell @fsinfo

    check this T-SQL

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

    My Blog
    www.aureus-salah.com

  • RE: Activity Monitor Empty

    bounce the services and then check again

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

    My Blog
    www.aureus-salah.com

  • RE: Linked Server connection issues

    first test the client SSMS connectivity to the other server across the domain,is it working fine ?

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

    My Blog
    www.aureus-salah.com

  • RE: SQL Server does not use all memory

    there is no memory pressure on your server,memory allocation based on the load of the Server,your page life is 1644 secs that is good and no need of memory,now come...

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

    My Blog
    www.aureus-salah.com

  • RE: SQL Server 2008 R2 - The parameter is incorrect.

    Install the updates for your Operating System first

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

    My Blog
    www.aureus-salah.com

  • RE: SQL Server 2008 R2 - The parameter is incorrect.

    we have required a recent one check with the recent date and time

    Install the recent service pack of Windows 7 and updates and then try again

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

    My Blog
    www.aureus-salah.com

  • RE: DBCC command

    you can use audit and database audit specification on the required table,there is an audit available for the UPDATE only also for the specific user as well as schema

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

    http://technet.microsoft.com/en-us/library/cc280404.aspx

    another option...

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

    My Blog
    www.aureus-salah.com

  • RE: SQL Server 2008 R2 - The parameter is incorrect.

    your OS version and bit ? and recent service pack ?

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

    My Blog
    www.aureus-salah.com

  • RE: Index Fragmentation

    that is the DML intensive table ?

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

    My Blog
    www.aureus-salah.com

  • RE: Cloud Computing - No need to have a DBA ?

    Still need of DBAs for a company which one offering Cloud Services but All organization will not adopt because there is a problem of data security and privacy,some restriction also...

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

    My Blog
    www.aureus-salah.com

  • RE: SQL Server 2008 R2 - The parameter is incorrect.

    On which SQL Server setup window ? paste the setup log file here

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

    My Blog
    www.aureus-salah.com

  • RE: SQL Server does not use all memory

    Select * from sys.dm_os_performance_counters

    where counter_name = 'Page life expectancy'

    Send result of this query and check OS performance monitor as well CPU utilization

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

    cross apply sys.dm_exec_sql_text(sp.sql_handle) st

    where sp.status...

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

    My Blog
    www.aureus-salah.com

Viewing 15 posts - 256 through 270 (of 490 total)