Viewing 15 posts - 181 through 195 (of 501 total)
There is a known issue with using the rolling upgrade from SQL 2005 to SQL 2008 R2 documented here.
I'm not certain if the same issue applies to SQL 2008 to...
December 16, 2010 at 2:15 pm
It does take slightly longer to upgrade the database when they are larger but not a huge amount of time. I recently upgraded a 1.5TB database from SQL 2005 to...
December 15, 2010 at 5:43 pm
Looks like you hit most of them. Here is my post upgrade list.
1. Change db compatibility to 100
2. Change page verify from torn page detection to checksum
3. Run DBCC UPDATEUSAGE
4....
December 15, 2010 at 5:30 pm
Tara-1044200 (12/9/2010)
can we do db partitioning in R2 Standard?
No, Enterprise only. Check out the link below for the feature list of 2008R2.
December 9, 2010 at 3:38 pm
Tara-1044200 (12/9/2010)
but it says only X86 and i have 64 bit OS and SQL.
On the download screen there is a link " Show hotfixes for all platforms and languages "....
December 9, 2010 at 2:55 pm
Tara-1044200 (12/9/2010)
December 9, 2010 at 2:52 pm
Tara-1044200 (12/9/2010)
can we directly download them from MS support...
December 9, 2010 at 2:42 pm
The 64 bit version of SQL 2000 is only available for the Itanium processors IA64 and not for x64 processors.
December 9, 2010 at 9:42 am
That would only help if you SQL 2000 Enterprise. They won't help with standard edition.
December 6, 2010 at 8:09 pm
thang_ngo_2002 (12/5/2010)
December 6, 2010 at 3:50 pm
No, you don't need it unless you plan on creating some local file shares.
December 6, 2010 at 3:35 pm
Running the query below with results to text will generate the script to change all SQL login passwords.
SELECT 'ALTER LOGIN '+'['+name+']'+' WITH PASSWORD = ''<yourpasswordhere>'';'
FROM sys.server_principals
WHERE type = 'S'
December 3, 2010 at 3:11 pm
Glad to hear everything worked out.
December 3, 2010 at 9:25 am
Happy to help.
December 2, 2010 at 4:58 pm
select d.name ,mirroring_state, mirroring_state_desc
from sys.database_mirroring dm
inner join sys.databases d
on dm.database_id = d.database_id
where d.name = '<your db name>'
December 2, 2010 at 4:51 pm
Viewing 15 posts - 181 through 195 (of 501 total)