Viewing 15 posts - 1,111 through 1,125 (of 1,539 total)
Question 1: how often do you backup the systems databases?
Generally once a week is sufficient. Also you may want to script out ur logins whenever u create/delete/modify any login;...
June 16, 2009 at 12:05 pm
i dont think i understand ur last post properly but what is the error u're getting in creating a maintainance plan for backup? or writing a plain job with backup...
June 16, 2009 at 11:58 am
txdave35 (6/16/2009)
Thanks! For some reason, I didn't think to click the drop down. lol
LOL:-D. Glad u got it going finally.
June 16, 2009 at 11:53 am
Check Paul Randall's blog on sqlskills.com, microsoft blog and other places including this site. there must be something related there. May be he or Gail or other experts can help...
June 16, 2009 at 11:44 am
txdave35 (6/16/2009)
June 16, 2009 at 11:39 am
can u post the full query? coz i cant find the table name in your query.
June 16, 2009 at 11:34 am
see if this can be of some help!!
June 16, 2009 at 11:10 am
case when salary >= 10000 and salary < 20000 then count(employeeid)
you need to change this everywhere.
June 16, 2009 at 10:59 am
cant find exact details but may be you can club details from the technet sites and present it to users.
http://technet.microsoft.com/en-us/library/cc966418.aspx
There are few more technical papers there which might help.
June 16, 2009 at 10:30 am
I dont have sample data so cant test for logical accuracy. but the below code runs fine.
Select Emp.name,Count (ManagerInfo.EmployeeID) from Employee Emp
Join EmployeeDepartment
On Emp.EmployeeID=EmployeeDepartment.EmployeeID
Join DepartmentManager
On EmployeeDepartment.DepartmentID=DepartmentManager.DepartmentID
Join Employee...
June 16, 2009 at 10:20 am
Try seperating the reporting database on a seperate server if you can afford to have one. Also since it's being built from OLTP databases, it need not reside on a...
June 16, 2009 at 10:02 am
check if the table 'ManagerInfo' exist?
Also see if the owner is different from you or dbo, in which case u'll need to prefix the owner name
like owner.ManagerInfo
June 16, 2009 at 9:57 am
shipra20 (6/16/2009)
June 16, 2009 at 9:45 am
right click on the job and click disable.
June 16, 2009 at 9:41 am
There are some good scripts for database and table size monitoring on this site. Pls navigate to the scripts section to find those.
June 16, 2009 at 9:40 am
Viewing 15 posts - 1,111 through 1,125 (of 1,539 total)