Forum Replies Created

Viewing 15 posts - 121 through 135 (of 184 total)

  • RE: refersh database

    The only way to refresh a database is right clicking database node in object explorer and clicking on refresh. You can not do it by t-sql query or other way.

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: In Query Editor only commit when I execute commit command

    In SSMS under the Tools->Options->Query Execution->SQL Server->ANSI

    You can check the IMPLICIT_TRANSACTIONS

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: In Query Editor only commit when I execute commit command

    Run the below query for the database you want

    SET IMPLICIT_TRANSACTIONS ON

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: How to create proxy account for sp_send_dbmail in sql server 2008

    Give below permission to the user in msdb

    USE [msdb]

    GO

    EXEC sp_addrolemember N'DatabaseMailUserRole', N'user'

    GO

    You can send mail.

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: Number of devices used

    Anybody is having idea on this?

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: Sql doubt

    Declare @command varchar(max)

    set @command='exec dbo.sp_spname'

    Create table #test (based on the columns returned from the stored procedure)

    insert into #test exec (@command)

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: SQL log file grows huge

    I will do that and check if that is creating the problem or not.

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: SQL log file grows huge

    We do have one reindexing job based on the fragmentation which runs every week sunday. So every table will not be affected. Log backups are taken successfully.

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: SQL log file grows huge

    Full backup is taken every week Sunday.

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: SQL log file grows huge

    I am not sure about the big data load since I have no information what the appliaction does.

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: SQL log file grows huge

    Log backups are taken successfully every hour.

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: SQL log file grows huge

    Hi,

    The log has grown to 48Gb in one month where the database size is 43 GB.

    I have checked log_reuse_wait_desc and it shows LOG_BACKUP

    MSDN site says "A log backup is required...

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: Tools to get the DML statement count

    Hi Gail,

    One of the user wants the select, insert and delete statement during certain period of time of one month back. We dont have the transaction logs backup and we...

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: How to export data into .csv file thru query

    Actually I want it from the query in SSMS specifying the location name and this is not repeatable.

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • RE: In which node the database instances were running after restart

    We want this for a particular time after restart. We can see the current owner but what about few days back when the server restarted? There may be failover among...

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

Viewing 15 posts - 121 through 135 (of 184 total)