Viewing 15 posts - 46 through 60 (of 282 total)
I am pretty sure it's because you specified a directory in the backup rather than a file. You need to name the actual file that you want to backup...
May 20, 2009 at 9:40 am
I am not really 100% on what you are asking for, but if you are asking if there's a way to trace only selected stored procedures, the way would be...
May 19, 2009 at 10:54 am
I think this will get you what you need unless I am misunderstanding the issue.
select * from sys.objects o
inner join sys.schemas s on o.schema_id = s.schema_id
where s.name =...
May 19, 2009 at 10:49 am
Programmatically, you can use WMI to check the Event Log (Application log) for the success or failed login
May 18, 2009 at 11:29 am
It's going to be difficult to help tune a stored procedure or a table's indexes without also seeing the code for the stored procedure, and the execution plan.
May 18, 2009 at 8:50 am
I am not sure what's going on, and can offer little help other than mentioning that message you posted is normal. This is not a sign of your problem....
May 18, 2009 at 8:48 am
Like so...
select top 1 ID
from (select top 5 ID
from table1
order by ID ASC) t
order by ID desc
May 15, 2009 at 3:00 pm
Yes, this is a problem due to shared / common files.
May 15, 2009 at 1:39 pm
This what you are looking for?
select
objtype,
usecounts,
cacheobjtype,
plan_handle
from
(
Select s.objtype,
s.cacheobjtype,
s.plan_handle,
s.usecounts,
...
May 14, 2009 at 5:19 pm
Couldn't you go old school and use a .bat file for this and have it scheduled via the scheduler of your choice (SQL Agent, Task Scheduler)?
May 14, 2009 at 1:53 pm
Have you tried using SQL Compare from RedGate or even the Schema Compare tool included with Visual Studio 2008 Database Edition?
May 13, 2009 at 4:42 pm
Networkservice is likely the default service account for ASP.NET service? Maybe change this to a domain account?
May 13, 2009 at 4:38 pm
Delete statements are logged to the transaction log, and thus slower than a TRUNCATE for example which is not logged.
The speed of a delete will depend upon many...
May 13, 2009 at 4:34 pm
joshua,
Thanks for the post, you saved me from short term insanity. :crazy:
May 13, 2009 at 1:12 pm
Execution plans do in fact change, some slightly, some more so from 2000 to 2005. Did you update all statistics (preferably with fullscan) after migrating to SQL 2005?
May 13, 2009 at 12:43 pm
Viewing 15 posts - 46 through 60 (of 282 total)