Viewing 15 posts - 9,016 through 9,030 (of 9,248 total)
i always favour migrating to a clean install rather than upgrade existing instances
August 17, 2008 at 12:27 pm
have you tried re running the patch? it'll tell if if its already installed, might be worth re applying if you can
August 16, 2008 at 11:54 am
the 64 bit database backend should be transparent to the apps. SQL is SQL.
However check with the vendor that their app supports sql2005 as a database platform
August 15, 2008 at 5:38 am
use the SP_Addumpdevice stored proc, syntax is as follows
'type', 'device name', 'drive:\path\file'
type is either disk or tape
device name is the logical name you want to use
drive:\path\file should be self explanatory
August 15, 2008 at 4:48 am
use this handy script to change object owner to another user for objects ion the database
select 'exec sp_changeobjectowner '''+user_name(Uid)+'.'+name+''','' ''' /*owner to assign to, dbo for example*/
from sysobjects
where user_name(uid) <>...
August 15, 2008 at 4:34 am
search this site for some of Brad McGhee's tutorials, they're very helpful
August 15, 2008 at 1:40 am
as a side note BOL also recommends to update usages too using
dbcc updateusage
I've already seen a similar problem on a couple of databases i upgraded recently.
August 15, 2008 at 1:36 am
glad you're all sorted 😉
August 13, 2008 at 10:27 am
can only be done for adding columns as far as i know
August 13, 2008 at 8:26 am
Rod at work (7/17/2008)
August 13, 2008 at 7:59 am
you should always rename the server before SQL is installed.
Un install SQL server, rename the server then re install
August 13, 2008 at 2:11 am
virtual server enterprise will quite happily allow virtual sql servers to run, in fact it is possible to set up a 2 node sql cluster 😉
August 12, 2008 at 4:36 pm
under 10 user connections!
i would home on an existing instance
August 12, 2008 at 10:05 am
Viewing 15 posts - 9,016 through 9,030 (of 9,248 total)