Viewing 15 posts - 196 through 210 (of 429 total)
ghanshyam.kundu (10/5/2011)
hi folks,can anybody tell me about sql logging and how can i retrieved the deleted data from that.
thanks in advance.
Ghanshyam
Any backups or snapshot of drives available?
October 5, 2011 at 8:07 am
Gianluca Sartori (9/30/2011)
Adding the failure reason and message is a bit more complicated. Instead of relying on standard notifications,...
September 30, 2011 at 6:38 am
I can see so many advices going for a sql server reboot. This should be your last resort when nothing else works. Today you might have the luxury of doing...
September 30, 2011 at 12:56 am
Ninja's_RGR'us (9/22/2011)
Sounds like I'd do a sp for each report they need.
I'd also look at some sort of replication, or...
September 22, 2011 at 11:46 am
Ninja's_RGR'us (9/22/2011)
So the safest way to go about building a plan is to download all data...
September 22, 2011 at 7:49 am
sqlnaive (9/15/2011)
value="server=ServerName\Instancename,PortNumber;database=DatabaseName;uid=UserId;pwd=P@ssw0rd"
Error message:
"A network-related or...
September 15, 2011 at 4:55 am
Thanks to both of you for your replies.
We are using default isolation level and in their stored procedure they will just write some select commands as this server is just...
September 14, 2011 at 7:40 am
@SQLFRNDZ (9/7/2011)
In order to audit the dml changes in subscriber tables...
September 8, 2011 at 3:54 am
Chuck 17099 (9/6/2011)
The logfile pretty much shows the same thing as the web page plus a bunch of stuff I don't understand. I'll copy it here in case it...
September 6, 2011 at 8:32 am
Chuck 17099 (9/6/2011)
Thanks for your reply. I checked the SQL server log and there are not entries at the time of the error. I also check the SSRS...
September 6, 2011 at 6:47 am
Chuck 17099 (9/5/2011)
September 6, 2011 at 12:39 am
Use the following command to list all the plans:
SELECT [text], cp.size_in_bytes, plan_handle
FROM sys.dm_exec_cached_plans AS cp
CROSS APPLY sys.dm_exec_sql_text(plan_handle)
WHERE cp.cacheobjtype = N'Compiled Plan'
AND cp.objtype = N'Adhoc'
AND cp.usecounts = 1
ORDER BY cp.size_in_bytes DESC;
If...
September 2, 2011 at 1:39 am
niravbhat (9/1/2011)
The Replication agent has not logged a progress in 10 minutes. This might indicates an unresponsive agent or high system activity,...
September 2, 2011 at 1:36 am
MyDoggieJessie (8/30/2011)
I am using SQL 2008 EE, and do not see a checkbox for 'Reinitialize'...I have only buttons to Start, Stop, Monitor, and Close
I will try the TSQL...
Leave the re-initialize...
August 30, 2011 at 12:06 pm
open the properties for that publication---> Add your table--> Press OK and come out of that wizard.
now, go to the replication and right click on your publication--> View Snapshot agent...
August 30, 2011 at 1:11 am
Viewing 15 posts - 196 through 210 (of 429 total)