Viewing 15 posts - 1,831 through 1,845 (of 4,745 total)
database probably in use by reporting services, stop this service before doing the restore, restart reporting services afterwards
April 23, 2011 at 11:01 am
look up sp_attach_db
April 23, 2011 at 10:57 am
was one of your databases in suspect mode before you started the upgrade? I think the error is quite explicit.
the database should still be marked suspect so fix that issue...
April 21, 2011 at 4:42 pm
use column 'type'
description of possible values here
April 21, 2011 at 4:33 pm
untested SQL2005 and above:
select name from master.sys.server_principals where IS_SRVROLEMEMBER ('sysadmin',name) = 1
union all
select name from master.sys.server_principals where IS_SRVROLEMEMBER ('serveradmin',name) = 1
any version but will be deprecated:
select loginname from syslogins where...
April 18, 2011 at 3:07 pm
backup\restore still a possibility or SSIS. If this is nightly I can see your point about backup\restore as there are number of things you should run post the upgrade.
If you...
April 18, 2011 at 7:45 am
Gail just asked my question for me.
Is it because this is a repeating process or just because you dont want to bring the users over?
April 18, 2011 at 7:23 am
grant the sql service account access to the folder you are trying to create the database file in.
April 18, 2011 at 6:44 am
was your question answered in this thread?
April 17, 2011 at 3:25 pm
most adverts suggest companies want breadth, but when it comes down to it for 90% of jobs they want good depth of knowledge in a small range of areas.
so don't...
April 17, 2011 at 3:19 pm
this error is usually an indication the server is under stress. a change was made in SP4 so 17883 errors produce more info to aid troubleshooting (by microsoft).
but as SQL2000...
April 16, 2011 at 12:34 pm
I've tested it - only 1 cpu was ever used.
April 15, 2011 at 7:39 am
as I do not seem to be trusted - from a 'trusted' source 🙂
http://technet.microsoft.com/en-us/library/ms188388(SQL.90).aspx
in the maxdop section -
'Parallel index operations are available only in SQL Server 2005 Enterprise Edition....
April 15, 2011 at 5:52 am
read the whole thread, thats no of processors standard edition uses for index rebuilds, not how many it is licensed to use.
April 15, 2011 at 4:15 am
Viewing 15 posts - 1,831 through 1,845 (of 4,745 total)