Viewing 15 posts - 16 through 30 (of 53 total)
March 5, 2019 at 11:38 pm
Thanks,
As pointed out, the queries have different attributes.
It is also explained here : https://www.sqlservergeeks.com/sys-dm_exec_plan_attributes/
March 5, 2019 at 11:18 pm
That is a huge difference. I suspect you run both queries in SMSS ? The execution plan is the exact same (including estimated/actual statistics) ? SET STATISTICS IO ON return the...
March 5, 2019 at 10:14 pm
March 4, 2019 at 10:33 pm
Hi,
Yes I use the same set options. I use sp_executesql in SMSS in order to get the same query as the one generate by the application.
DECLARE @P1 int;
DECLARE...
March 4, 2019 at 10:31 pm
Hi,
When it comes to "disaster-event" you need to think about those 3 topics: Backup, High-Availability, Disaster Recovery.
Now it seems you want to tackle the Backup topic....
March 4, 2019 at 7:32 pm
If people have local admin rights on their machine, their is nothing that will prevent them to create a local SQL Server not accessible from the network. You would need...
March 4, 2019 at 7:03 pm
I had a similar issue in the past and found warnings/error in the event logs. From there, I googled and found a known issue and a registry key.
Did...
March 4, 2019 at 6:56 pm
I do not know the nature of your development, but I would leave the service set to "Manual" and start/stop on-demand if you do not need SQL Server on daily...
March 4, 2019 at 6:54 pm
Hi,
The answer to your question will reside in the event logs of the machine or SQL. When you start it, does it remain started for a while ?
March 4, 2019 at 4:43 pm
Would it be correct to say that RPC:Completed and SP:StmtCompleted are tied to a specific query, but the whole transaction can roll back later ? Is there any way in SQL...
January 25, 2019 at 12:52 am
Hi
From SQL Profiler, I can see there is a Rollback Transaction Starting and Rollback Transaction Started. I suspect that is the cause of this issue.
It is...
January 25, 2019 at 12:35 am
Hi
Thank you for all the input.
I know it seems that I am not looking at the right thing or I have the wrong parameters, but...
January 25, 2019 at 12:10 am
Hi,
Are you thinking that another query would revert the change ? I can confirm there is not based on the SQL Profiler Trace.
Also, there is no...
January 23, 2019 at 7:52 pm
Viewing 15 posts - 16 through 30 (of 53 total)