Viewing 15 posts - 331 through 345 (of 350 total)
you are in aright track.
But it would be better if you take differential every one hour and and set up clean up task to delete old differential backups so that...
October 19, 2010 at 2:02 pm
As far as I know there is no revert or rollback operation for the SP's
The only thing is the old backup and restore along with the system databases.
Every time...
October 18, 2010 at 5:48 pm
Enable logging in advanced options you can click text or flat file thats it.
October 14, 2010 at 4:25 pm
here is the link
http://www.mssqltips.com/tip.asp?tip=1755
Change data capture--excellent feature in sql server 2008
October 14, 2010 at 1:28 pm
what is the schema of your SP its not sys. right.
if you give the name with sys. spname it creates in system store proc.
October 12, 2010 at 5:03 pm
Give the user sysadmin role who is executing that SP should solve your problem.
October 12, 2010 at 4:47 pm
Change the schedule because if there is parallel things running that might be stopping
It happen to me the same thing and I changed the schedule it worked fine.
October 12, 2010 at 4:12 pm
If you are selecting a column column and it have an index then you should use the same column in the where clause. then only it uses the index.
October 11, 2010 at 5:32 pm
Don't use the dbcc commands unless you really need to
Thats going to change your plan every time.
Run through sp_executesql and don't do the dbcc freeproccache and rerun it takes...
October 11, 2010 at 4:37 pm
I changed the MAXDOP setting to 1 that resolved CXPACKET waits this also brought my cpu down to normal.
Added a new data file to avoid the the pagelatch_up waits.
Tuned store...
October 11, 2010 at 4:07 pm
Hi Parti,
My best suggestion in that case just use the import/expoert wizard f you are using sql 2005 and above.
Select the file path --> map columns--> check datatypes-->finish
Go simple!
I...
October 8, 2010 at 3:24 pm
My best preference for e-mail is use the below query and set this as a job in execute t-sql maintainance plan tasks, so you have job logging and results...
October 8, 2010 at 1:05 pm
If you right click on the store proc --> properties, under programmability.
See for exec as to check user or sql agent atleast then run the trace
I think...
October 6, 2010 at 1:32 pm
It should be in tools tab in SSMStudio.
Look for it or turn on your activity monitor and right click on any SPID click trace it opens profiler aoutomatically.
October 6, 2010 at 1:13 pm
SELECT c.Email
FROM AAService.dbo.Customers c WITH (NOLOCK)
group by c.Email having ...
October 6, 2010 at 1:05 pm
Viewing 15 posts - 331 through 345 (of 350 total)