Viewing 15 posts - 481 through 495 (of 1,335 total)
Also remember to script jobs and move there. And change the compatability mode to 90 for all databases in sql 2005 so that you can take the advantage of sql...
July 18, 2007 at 1:28 am
No infact when running with bulk logged mode your backup size will be much higher than the size it was when on full recovery mode. You can give a try...
July 18, 2007 at 1:24 am
July 18, 2007 at 12:02 am
If the package has multiple versions you have to specify the version number tooo.
July 17, 2007 at 11:59 pm
Dual Duo core processors should virtually show as 4 processors which is right. But licensing as mentioned can be done for 2.
July 17, 2007 at 11:56 pm
Before that run dbcc sqlperf(logspace) to check the space used by the log files of each database so that you can shrink accordingly.
July 17, 2007 at 11:38 pm
You can't use the variables there you have to change it.
July 17, 2007 at 11:36 pm
If you find hard to use the above query then use SSMS to restore the database and force restore over the new db you have created.
July 17, 2007 at 11:31 pm
For more then 16GB RAM you have to use /PAE switch and not AWE. The link given below can be more useful.
July 17, 2007 at 8:23 am
Use this script given below to see if the user has grant option.
select b.name,c.name,
user_name(a.grantee_principal_id) as UserName,a.permission_name,
case a.state
when 'W' then 'With Grant Option'
when 'G' then 'Grant'
When 'D' then 'Deny'
Else ''
end as...
July 17, 2007 at 8:04 am
Hope this helps you
Declare
@CaseFlag int
SET
@CaseFlag = 2
if
@caseflag = 0 or
July 17, 2007 at 8:01 am
Can't this be re-written as
using the in clause
July 17, 2007 at 7:57 am
Don't mistake me have you added him in the sysadmin role of sql server or the windows group. Add him in the sysadmin role of sql server.
July 17, 2007 at 7:45 am
Case statement has a else clause too. see if you can use the else clausefor that. else one idea is check if @caseflag has a value of 1 or 0...
July 17, 2007 at 7:38 am
Viewing 15 posts - 481 through 495 (of 1,335 total)