Viewing 15 posts - 121 through 135 (of 184 total)
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//
April 27, 2011 at 6:21 am
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//
April 27, 2011 at 2:33 am
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//
April 27, 2011 at 2:29 am
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//
April 21, 2011 at 6:26 am
Anybody is having idea on this?
Ryan
//All our dreams can come true, if we have the courage to pursue them//
April 21, 2011 at 3:02 am
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//
April 21, 2011 at 3:00 am
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//
April 19, 2011 at 10:02 am
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//
April 19, 2011 at 9:54 am
Full backup is taken every week Sunday.
Ryan
//All our dreams can come true, if we have the courage to pursue them//
April 19, 2011 at 9:51 am
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//
April 19, 2011 at 8:57 am
Log backups are taken successfully every hour.
Ryan
//All our dreams can come true, if we have the courage to pursue them//
April 19, 2011 at 8:50 am
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//
April 19, 2011 at 8:40 am
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//
April 15, 2011 at 6:44 am
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//
February 14, 2011 at 7:30 am
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//
January 12, 2011 at 8:19 am
Viewing 15 posts - 121 through 135 (of 184 total)