显示标签为“potential”的博文。显示所有博文
显示标签为“potential”的博文。显示所有博文

2012年3月6日星期二

Any Potential Problems with 2 Diff Database Engines on same server?

Hi:
Could someone please bring up any potential issues or
problems if there are 2 different database engines
(PERVASIVE SQL 2000 and MS SQL SERVER 2000) loaded on the
same server? They are going to be only 3 to 5 users to
these databases.
How are memory allocated? What about CPU resources? Any
conflicting problems that may arise from this setup?
Your input is very much appreciated. Thanks.Of course... both engines will be competing for resources, but honestly with
3-5 users it's unlikely to be a big deal.
--
Brian Moran
Principal Mentor
Solid Quality Learning
SQL Server MVP
http://www.solidqualitylearning.com
"Steven Wong" <anonymous@.discussions.microsoft.com> wrote in message
news:001b01c3b9ca$6c75aed0$a501280a@.phx.gbl...
> Hi:
> Could someone please bring up any potential issues or
> problems if there are 2 different database engines
> (PERVASIVE SQL 2000 and MS SQL SERVER 2000) loaded on the
> same server? They are going to be only 3 to 5 users to
> these databases.
> How are memory allocated? What about CPU resources? Any
> conflicting problems that may arise from this setup?
> Your input is very much appreciated. Thanks.

Any plans by MS to discontinue support for SQL Server 2000?

We're contemplating an upgrade to SQL Server 2005 but I'd like to know if
ongoing support for SQL Server 2000 is a potential issue.
Thanks!Josh wrote:
> We're contemplating an upgrade to SQL Server 2005 but I'd like to know if
> ongoing support for SQL Server 2000 is a potential issue.
> Thanks!
http://support.microsoft.com/gp/lifeselectindex#S
Tracy McKibben
MCDBA
http://www.realsqlguy.com|||Thanks for the link!
"Tracy McKibben" wrote:

> Josh wrote:
> http://support.microsoft.com/gp/lifeselectindex#S
>
> --
> Tracy McKibben
> MCDBA
> http://www.realsqlguy.com
>

Any plans by MS to discontinue support for SQL Server 2000?

We're contemplating an upgrade to SQL Server 2005 but I'd like to know if
ongoing support for SQL Server 2000 is a potential issue.
Thanks!Josh wrote:
> We're contemplating an upgrade to SQL Server 2005 but I'd like to know if
> ongoing support for SQL Server 2000 is a potential issue.
> Thanks!
http://support.microsoft.com/gp/lifeselectindex#S
Tracy McKibben
MCDBA
http://www.realsqlguy.com|||Thanks for the link!
"Tracy McKibben" wrote:
> Josh wrote:
> > We're contemplating an upgrade to SQL Server 2005 but I'd like to know if
> > ongoing support for SQL Server 2000 is a potential issue.
> >
> > Thanks!
> http://support.microsoft.com/gp/lifeselectindex#S
>
> --
> Tracy McKibben
> MCDBA
> http://www.realsqlguy.com
>

2012年2月18日星期六

Any harm in changing nullability while a default exists for a colu

Hi,
In Microsoft SQL Server 2000 SP3 are there any potential drawbacks of
changing the table column nullability via the ALTER TABLE ALTER COLUMN while
a default is also defined for that column? If yes, what are they?
--
Many thanks,
OskarYou'll need to drop the default constraint before ALTER TABLE...ALTER COLUMN
and re-add the constraint afterwards.
Column nullability doesn't affect the behavior of the default constraint so
I'm not aware of any drawbacks. The default value is used only when the
column is not included in the column list of an INSERT statement. Of
course, an explicit NULL value will be permitted only when the column allows
nulls.
Hope this helps.
Dan Guzman
SQL Server MVP
"Oskar" <Oskar@.discussions.microsoft.com> wrote in message
news:D50EF76B-BF46-4B49-9AD9-07364BF75E8A@.microsoft.com...
> Hi,
> In Microsoft SQL Server 2000 SP3 are there any potential drawbacks of
> changing the table column nullability via the ALTER TABLE ALTER COLUMN
> while
> a default is also defined for that column? If yes, what are they?
> --
> Many thanks,
> Oskar
>|||Yes, but when I needed to change a column from NULL to NOT NULL in one of the
tables and a default was defined on that column, the SQL Server parser didn't
complain about that. It allowed me to change the definition without any
warnings. Does this mean that I've done it in the wrong way? If yes, why?
--
Many thanks,
Oskar
"Dan Guzman" wrote:
> You'll need to drop the default constraint before ALTER TABLE...ALTER COLUMN
> and re-add the constraint afterwards.
> Column nullability doesn't affect the behavior of the default constraint so
> I'm not aware of any drawbacks. The default value is used only when the
> column is not included in the column list of an INSERT statement. Of
> course, an explicit NULL value will be permitted only when the column allows
> nulls.
>
> --
> Hope this helps.
> Dan Guzman
> SQL Server MVP
> "Oskar" <Oskar@.discussions.microsoft.com> wrote in message
> news:D50EF76B-BF46-4B49-9AD9-07364BF75E8A@.microsoft.com...
> > Hi,
> > In Microsoft SQL Server 2000 SP3 are there any potential drawbacks of
> > changing the table column nullability via the ALTER TABLE ALTER COLUMN
> > while
> > a default is also defined for that column? If yes, what are they?
> >
> > --
> > Many thanks,
> > Oskar
> >
> >
>
>|||No, Oskar, you didn't do anything wrong. My comment about dropping and
re-adding the constraint applies when changing the column data type but not
when changing only column nullability. Sorry for the confusion.
--
Hope this helps.
Dan Guzman
SQL Server MVP
"Oskar" <Oskar@.discussions.microsoft.com> wrote in message
news:3049DDD6-BA64-4A17-BEB6-7B34B9C68D80@.microsoft.com...
> Yes, but when I needed to change a column from NULL to NOT NULL in one of
> the
> tables and a default was defined on that column, the SQL Server parser
> didn't
> complain about that. It allowed me to change the definition without any
> warnings. Does this mean that I've done it in the wrong way? If yes, why?
> --
> Many thanks,
> Oskar
> "Dan Guzman" wrote:
>> You'll need to drop the default constraint before ALTER TABLE...ALTER
>> COLUMN
>> and re-add the constraint afterwards.
>> Column nullability doesn't affect the behavior of the default constraint
>> so
>> I'm not aware of any drawbacks. The default value is used only when the
>> column is not included in the column list of an INSERT statement. Of
>> course, an explicit NULL value will be permitted only when the column
>> allows
>> nulls.
>>
>> --
>> Hope this helps.
>> Dan Guzman
>> SQL Server MVP
>> "Oskar" <Oskar@.discussions.microsoft.com> wrote in message
>> news:D50EF76B-BF46-4B49-9AD9-07364BF75E8A@.microsoft.com...
>> > Hi,
>> > In Microsoft SQL Server 2000 SP3 are there any potential drawbacks of
>> > changing the table column nullability via the ALTER TABLE ALTER COLUMN
>> > while
>> > a default is also defined for that column? If yes, what are they?
>> >
>> > --
>> > Many thanks,
>> > Oskar
>> >
>> >
>>