Viewing 15 posts - 76 through 90 (of 186 total)
But after I run the following now I get the results.
UPDATE STATISTICS tbl1 WITH FULLSCAN
January 9, 2015 at 7:11 am
This is what happened and very strange to me
select o.name, last_execution_time from sys.dm_exec_procedure_stats ps
inner join sys.objects o
on ps.object_id = o.object_id
where o.type = 'P'
and o.name = 'Proc1'
I was running the...
January 7, 2015 at 8:48 am
I renamed the proc to proc2 and it's still showing up as executed few minutes ago though no jobs have failed and still it does not show up in...
January 6, 2015 at 2:25 pm
Thank you for the reply but still it's not showing up in the trace.
January 6, 2015 at 2:19 pm
Argggh!! Finally !!! Thanks a bunch.:-)
October 15, 2014 at 1:07 pm
Unfortuantely I have almost 50 databases and it has to be a view since the client is using the view to do a data lookup.
May 22, 2014 at 12:31 pm
How about using a cursor and a CTE in a view and doing a final select on the CTE in a view? Just thought of it.
May 22, 2014 at 12:18 pm
I figured out what the issue was. There were two stored procedure calls ( I did not have that code in the post) .
Both calls were using the same...
January 23, 2014 at 12:47 pm
error:The parameterized query '(@param1 int,@Paramout int OUTPUT)' expects the parameter '@Paramout', which was not supplied.
January 23, 2014 at 9:45 am
SQLSteve (8/30/2013)
August 30, 2013 at 7:15 am
Jay Purvis (8/29/2013)
We use RedGate SQL Multi Script.It works very well.
Thank you and will take a look at it. I do not have multiservers. Just one server but many databases.
August 29, 2013 at 1:18 pm
Thank yoy for the reply, actually this is what I am trying to do. I have bunch of objects that I need to create on multiple databases. I was...
August 29, 2013 at 1:08 pm
I forgot to mention that it is just on one server but there are multiple databases
August 14, 2013 at 12:31 pm
Viewing 15 posts - 76 through 90 (of 186 total)