Viewing 15 posts - 61 through 75 (of 83 total)
If you run the optimizations more often the should less load to have to ship across.
November 19, 2007 at 8:11 am
This should log all activity while profiler is running. Make sure you are starting the profiler trace and then running the actions in your application.
November 18, 2007 at 9:48 am
On the sql server in program files > sql server there is a program called profiler. This will show all incoming commands.
November 16, 2007 at 3:40 pm
select @sql='''SELECT * FROM M_Driemnd('+convert(varchar(255),@p_number)+')'''
November 16, 2007 at 3:07 am
Does your backup window start at 9pm by any chance?
Are you using native SQL backups or a third party tool like litespeed?
November 16, 2007 at 2:56 am
I would say put a trigger on the table to check if there are any appointments within 15 mins of the proposed new appointment.
November 15, 2007 at 3:33 pm
Could you explain a bit more about the data. Ie what data is available and what result you want?
November 15, 2007 at 3:30 pm
try putting you query into a sql nvarchar variable and using exec sp_executesql @cmd
November 15, 2007 at 10:11 am
Sorry missed the last couple of posts.
November 15, 2007 at 10:06 am
Try this
DECLARE @CMD NVARCHAR(500)
DECLARE STREXEC CURSOR FOR
select
'alter database [' + sd.name + '] modify file (name=N''' + sm.name+''', filegrowth = 100MB)'
from sys.master_files sm
join sys.databases sd on sd.database_id=sm.database_id
where is_percent_growth=1...
November 15, 2007 at 10:06 am
How about a backup then restore?
November 15, 2007 at 6:43 am
The syntax for sp_add_job has a parameter called @delete_level. If you use this you can set the job to delete itself on completion (wether it is successful or not).
You will...
November 14, 2007 at 3:32 pm
Viewing 15 posts - 61 through 75 (of 83 total)