Viewing 15 posts - 811 through 825 (of 1,081 total)
Autogrow is realtime, but specify it to grow by MB and not %, and use realistic values - which only you will know after determining the growth over a week...
May 6, 2010 at 3:54 am
Set up notifications and alert?
never shrink it to a size that's less than the current size.
Read up on shrinking here for more info:
http://msdn.microsoft.com/en-us/library/aa174524%28SQL.80%29.aspx
May 6, 2010 at 3:51 am
5 Years is intermediate, and there are still loads to experience from SQL Server, contribute and develop.
Next on your agenda I would say is to go for MVP status.
May 6, 2010 at 3:42 am
Because the sql user account needs to be created on sql server level as well, not only db level.
drop the account from the DB, recreate it on sql server level,...
May 5, 2010 at 5:39 am
sp_helpdb master
or the database name
May 5, 2010 at 5:31 am
what type of account are you using to start the service?
May 5, 2010 at 12:51 am
This should point you in the right direction...
May 5, 2010 at 12:16 am
You can run 2, to separate folders, one for backup purposes, and one for shipping to a remote instance.
BUT: when you need to do a restore, you'll need to use...
May 4, 2010 at 11:37 pm
Hi Steve, I think "abandoning" VBS and PWS might be a bit harsh.
Moving on to new technologies is a definite yes, but still using your "legacy" knowledge is never...
May 4, 2010 at 11:29 pm
You could use the same backup, although log shipping configuration deletes old logs after a set amount of time/days, just use caution.
May 4, 2010 at 11:21 pm
something like this?
SELECT a.*
FROM OPENROWSET('SQLNCLI', 'Server=Seattle1;Trusted_Connection=yes;',
'SELECT GroupName, Name, DepartmentID
FROM AdventureWorks.HumanResources.Department
ORDER BY GroupName, Name')...
May 4, 2010 at 7:27 am
try:
USE yourdatabasename
exec stp_yourspname
sounds like you are not focused on the correct DB where the proc was created.
May 4, 2010 at 7:22 am
Are you trying to write multiple mark's into a single column, but not overwrite, just append next to each other?
or
Are you trying to write multiple rows for each student for...
April 30, 2010 at 12:01 am
Viewing 15 posts - 811 through 825 (of 1,081 total)