 |
|
 |
|
Next: create olap cube
|
| Author |
Message |
External

Since: Oct 24, 2006 Posts: 40
|
(Msg. 1) Posted: Mon Dec 04, 2006 12:17 pm
Post subject: Upgrading From SQL 2000 A few questions. Archived from groups: microsoft>public>sqlserver>programming (more info?)
|
|
|
Hi All,
Not sure if this is the most appropriate group to ask this, so appologies if
its in the wrong place, anyhow!
Currently, we are running VS2003, SQL Server 2003 and have implemented a
number of reports using the embedded Crystal Reports Version 9. Although
this works, we want to get our systems up to date and convert the
application to use ASP.NET 2.0 and Sql Server 2005 to make use of the
reporting services.
My Questions.
1.) I use a custom solution to prevent people accessing my reports
currently, by coding the form not to allow users who dont appear in my
access control table for reports. I was wondering what kind of security
facilities are available in SQL 2005 to allow me to do this ? I dont want it
based on Windows NT Group membership.
2.) Can you run SQL 2000 and 2005 side by side ( from a migration point of
view )
3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database onto
the 2005 servier so I can do development on the 2005 server configuration
before I switch users over ?
4.) When I look at the licencing costs, they refer to number of users. In
the ASP.NET evnvironment, does the ASPNET account act as one of those user
5.) Finally, can you still access SQL 2005 with the SQL server username and
password like you can in SQL 2000?
Thanks for your help
--
Goofy >> Stay informed about: Upgrading From SQL 2000 A few questions. |
|
| Back to top |
|
 |  |
External

Since: Aug 22, 2004 Posts: 840
|
(Msg. 2) Posted: Mon Dec 04, 2006 12:17 pm
Post subject: Re: Upgrading From SQL 2000 A few questions. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
> 1.) I use a custom solution to prevent people accessing my reports
> currently, by coding the form not to allow users who dont appear in my
> access control table for reports. I was wondering what kind of security
> facilities are available in SQL 2005 to allow me to do this ? I dont want
> it based on Windows NT Group membership.
For server-based reports, the RS security model allows you to create roles
and add users to roles. With local reports, your application needs to take
care of report security and providing data to the report.
> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point of
> view )
Yes, but one needs to be a named instance. Note that you cannot easily
change a named instance to default or visa versa after the migration.
> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
> onto the 2005 servier so I can do development on the 2005 server
> configuration before I switch users over ?
I'm not sure I fully understand your requirements but you can restore a SQL
2000 database to SQL 2005 and perform development under SQL 2005 until you
are ready to switch. Personally, I would treat this like a normal
development project. When you are ready to go live, restore the database to
SQL 2005 and then run the same upgrade scripts you applied during
development.
> 4.) When I look at the licencing costs, they refer to number of users. In
> the ASP.NET evnvironment, does the ASPNET account act as one of those user
It's best to ask Microsoft directly regarding licensing questions.
Generally speaking, you need to use per-processor licensing if your ASP.NET
application servers anonymous internet users. Also, licensing varies by SQL
Server edition. See http://www.microsoft.com/sql/howtobuy/faq.mspx.
> 5.) Finally, can you still access SQL 2005 with the SQL server username
> and password like you can in SQL 2000?
Yes. Depending on the OS, you can also enforce password policies for
standard SQL Server login.
--
Hope this helps.
Dan Guzman
SQL Server MVP
"Goofy" wrote in message
> Hi All,
>
> Not sure if this is the most appropriate group to ask this, so appologies
> if its in the wrong place, anyhow!
>
> Currently, we are running VS2003, SQL Server 2003 and have implemented a
> number of reports using the embedded Crystal Reports Version 9. Although
> this works, we want to get our systems up to date and convert the
> application to use ASP.NET 2.0 and Sql Server 2005 to make use of the
> reporting services.
>
> My Questions.
>
> 1.) I use a custom solution to prevent people accessing my reports
> currently, by coding the form not to allow users who dont appear in my
> access control table for reports. I was wondering what kind of security
> facilities are available in SQL 2005 to allow me to do this ? I dont want
> it based on Windows NT Group membership.
>
> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point of
> view )
>
> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
> onto the 2005 servier so I can do development on the 2005 server
> configuration before I switch users over ?
>
>
> 4.) When I look at the licencing costs, they refer to number of users. In
> the ASP.NET evnvironment, does the ASPNET account act as one of those user
>
> 5.) Finally, can you still access SQL 2005 with the SQL server username
> and password like you can in SQL 2000?
>
> Thanks for your help
>
>
>
>
>
>
>
> --
> Goofy
> >> Stay informed about: Upgrading From SQL 2000 A few questions. |
|
| Back to top |
|
 |  |
External

Since: Oct 24, 2006 Posts: 40
|
(Msg. 3) Posted: Mon Dec 04, 2006 1:54 pm
Post subject: Re: Upgrading From SQL 2000 A few questions. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Dan,
Thanks very much for your answers. Most helpful
"Dan Guzman" wrote in message
>> 1.) I use a custom solution to prevent people accessing my reports
>> currently, by coding the form not to allow users who dont appear in my
>> access control table for reports. I was wondering what kind of security
>> facilities are available in SQL 2005 to allow me to do this ? I dont want
>> it based on Windows NT Group membership.
>
> For server-based reports, the RS security model allows you to create roles
> and add users to roles. With local reports, your application needs to
> take care of report security and providing data to the report.
>
>> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point
>> of view )
>
> Yes, but one needs to be a named instance. Note that you cannot easily
> change a named instance to default or visa versa after the migration.
>
>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>> onto the 2005 servier so I can do development on the 2005 server
>> configuration before I switch users over ?
>
> I'm not sure I fully understand your requirements but you can restore a
> SQL 2000 database to SQL 2005 and perform development under SQL 2005 until
> you are ready to switch. Personally, I would treat this like a normal
> development project. When you are ready to go live, restore the database
> to SQL 2005 and then run the same upgrade scripts you applied during
> development.
>
>> 4.) When I look at the licencing costs, they refer to number of users. In
>> the ASP.NET evnvironment, does the ASPNET account act as one of those
>> user
>
> It's best to ask Microsoft directly regarding licensing questions.
> Generally speaking, you need to use per-processor licensing if your
> ASP.NET application servers anonymous internet users. Also, licensing
> varies by SQL Server edition. See
> http://www.microsoft.com/sql/howtobuy/faq.mspx.
>
>> 5.) Finally, can you still access SQL 2005 with the SQL server username
>> and password like you can in SQL 2000?
>
> Yes. Depending on the OS, you can also enforce password policies for
> standard SQL Server login.
>
>
> --
> Hope this helps.
>
> Dan Guzman
> SQL Server MVP
>
> "Goofy" wrote in message
>
>> Hi All,
>>
>> Not sure if this is the most appropriate group to ask this, so appologies
>> if its in the wrong place, anyhow!
>>
>> Currently, we are running VS2003, SQL Server 2003 and have implemented a
>> number of reports using the embedded Crystal Reports Version 9. Although
>> this works, we want to get our systems up to date and convert the
>> application to use ASP.NET 2.0 and Sql Server 2005 to make use of the
>> reporting services.
>>
>> My Questions.
>>
>> 1.) I use a custom solution to prevent people accessing my reports
>> currently, by coding the form not to allow users who dont appear in my
>> access control table for reports. I was wondering what kind of security
>> facilities are available in SQL 2005 to allow me to do this ? I dont want
>> it based on Windows NT Group membership.
>>
>> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point
>> of view )
>>
>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>> onto the 2005 servier so I can do development on the 2005 server
>> configuration before I switch users over ?
>>
>>
>> 4.) When I look at the licencing costs, they refer to number of users. In
>> the ASP.NET evnvironment, does the ASPNET account act as one of those
>> user
>>
>> 5.) Finally, can you still access SQL 2005 with the SQL server username
>> and password like you can in SQL 2000?
>>
>> Thanks for your help
>>
>>
>>
>>
>>
>>
>>
>> --
>> Goofy
>>
> >> Stay informed about: Upgrading From SQL 2000 A few questions. |
|
| Back to top |
|
 |  |
External

Since: Aug 24, 2003 Posts: 1744
|
(Msg. 4) Posted: Mon Dec 04, 2006 2:36 pm
Post subject: Re: Upgrading From SQL 2000 A few questions. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Goofy
> 1.) I use a custom solution to prevent people accessing my reports
> currently, by coding the form not to allow users who dont appear in my
> access control table for reports. I was wondering what kind of security
> facilities are available in SQL 2005 to allow me to do this ? I dont want
> it based on Windows NT Group membership.
Security is a huge subject in SQL Server 2005 , I'd suggest you to spend a
few days to sudy it.BOL is a good start
> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point of
> view )
Yes
> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
> onto the 2005 servier so I can do development on the 2005 server
> configuration before I switch users over ?
No, but you will be able to create a lonked server to SQL Server 2000/2005
Or perhaps you are talking about BACKUP and RESTORE databases
> 4.) When I look at the licencing costs, they refer to number of users. In
> the ASP.NET evnvironment, does the ASPNET account act as one of those user
I'm not an ASP.NET expert
> 5.) Finally, can you still access SQL 2005 with the SQL server username
> and password like you can in SQL 2000?
You will have to re-create them again on SQL Server 2005
"Goofy" wrote in message
> Hi All,
>
> Not sure if this is the most appropriate group to ask this, so appologies
> if its in the wrong place, anyhow!
>
> Currently, we are running VS2003, SQL Server 2003 and have implemented a
> number of reports using the embedded Crystal Reports Version 9. Although
> this works, we want to get our systems up to date and convert the
> application to use ASP.NET 2.0 and Sql Server 2005 to make use of the
> reporting services.
>
> My Questions.
>
> 1.) I use a custom solution to prevent people accessing my reports
> currently, by coding the form not to allow users who dont appear in my
> access control table for reports. I was wondering what kind of security
> facilities are available in SQL 2005 to allow me to do this ? I dont want
> it based on Windows NT Group membership.
>
> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point of
> view )
>
> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
> onto the 2005 servier so I can do development on the 2005 server
> configuration before I switch users over ?
>
>
> 4.) When I look at the licencing costs, they refer to number of users. In
> the ASP.NET evnvironment, does the ASPNET account act as one of those user
>
> 5.) Finally, can you still access SQL 2005 with the SQL server username
> and password like you can in SQL 2000?
>
> Thanks for your help
>
>
>
>
>
>
>
> --
> Goofy
> >> Stay informed about: Upgrading From SQL 2000 A few questions. |
|
| Back to top |
|
 |  |
External

Since: Oct 24, 2006 Posts: 40
|
(Msg. 5) Posted: Mon Dec 04, 2006 2:36 pm
Post subject: Re: Upgrading From SQL 2000 A few questions. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Thanks for your answers. Just a couple of comments.
>> 5.) Finally, can you still access SQL 2005 with the SQL server username
>> and password like you can in SQL 2000?
>
> You will have to re-create them again on SQL Server 2005
What I meant was does SQL Server 2005 still use sql username/password logon
authority or has it gone over to just windows integrated alone.
>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>> onto the 2005 servier so I can do development on the 2005 server
>> configuration before I switch users over ?
>
> No, but you will be able to create a lonked server to SQL Server 2000/2005
> Or perhaps you are talking about BACKUP and RESTORE databases
Whats a 'lonked ' server ?
"Uri Dimant" wrote in message
> Goofy
>
>> 1.) I use a custom solution to prevent people accessing my reports
>> currently, by coding the form not to allow users who dont appear in my
>> access control table for reports. I was wondering what kind of security
>> facilities are available in SQL 2005 to allow me to do this ? I dont want
>> it based on Windows NT Group membership.
>
> Security is a huge subject in SQL Server 2005 , I'd suggest you to spend
> a few days to sudy it.BOL is a good start
>
>
>> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point
>> of view )
>
> Yes
>
>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>> onto the 2005 servier so I can do development on the 2005 server
>> configuration before I switch users over ?
>
> No, but you will be able to create a lonked server to SQL Server 2000/2005
> Or perhaps you are talking about BACKUP and RESTORE databases
>
>
>> 4.) When I look at the licencing costs, they refer to number of users. In
>> the ASP.NET evnvironment, does the ASPNET account act as one of those
>> user
>
> I'm not an ASP.NET expert
>
>> 5.) Finally, can you still access SQL 2005 with the SQL server username
>> and password like you can in SQL 2000?
>
> You will have to re-create them again on SQL Server 2005
>
>
> "Goofy" wrote in message
>
>> Hi All,
>>
>> Not sure if this is the most appropriate group to ask this, so appologies
>> if its in the wrong place, anyhow!
>>
>> Currently, we are running VS2003, SQL Server 2003 and have implemented a
>> number of reports using the embedded Crystal Reports Version 9. Although
>> this works, we want to get our systems up to date and convert the
>> application to use ASP.NET 2.0 and Sql Server 2005 to make use of the
>> reporting services.
>>
>> My Questions.
>>
>> 1.) I use a custom solution to prevent people accessing my reports
>> currently, by coding the form not to allow users who dont appear in my
>> access control table for reports. I was wondering what kind of security
>> facilities are available in SQL 2005 to allow me to do this ? I dont want
>> it based on Windows NT Group membership.
>>
>> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point
>> of view )
>>
>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>> onto the 2005 servier so I can do development on the 2005 server
>> configuration before I switch users over ?
>>
>>
>> 4.) When I look at the licencing costs, they refer to number of users. In
>> the ASP.NET evnvironment, does the ASPNET account act as one of those
>> user
>>
>> 5.) Finally, can you still access SQL 2005 with the SQL server username
>> and password like you can in SQL 2000?
>>
>> Thanks for your help
>>
>>
>>
>>
>>
>>
>>
>> --
>> Goofy
>>
>
> >> Stay informed about: Upgrading From SQL 2000 A few questions. |
|
| Back to top |
|
 |  |
External

Since: Aug 24, 2003 Posts: 1744
|
(Msg. 6) Posted: Mon Dec 04, 2006 3:10 pm
Post subject: Re: Upgrading From SQL 2000 A few questions. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Goofy
> What I meant was does SQL Server 2005 still use sql username/password
> logon authority or has it gone over to just windows integrated alone.
It has . However a syntax a little bit different. Take a look at CREATE
LOGIN .... in the BOL
> Whats a 'lonked ' server ?
Sorry, should be "linked servers"
"Goofy" wrote in message
> Thanks for your answers. Just a couple of comments.
>
>>> 5.) Finally, can you still access SQL 2005 with the SQL server username
>>> and password like you can in SQL 2000?
>>
>> You will have to re-create them again on SQL Server 2005
> What I meant was does SQL Server 2005 still use sql username/password
> logon authority or has it gone over to just windows integrated alone.
>
>>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>>> onto the 2005 servier so I can do development on the 2005 server
>>> configuration before I switch users over ?
>>
>> No, but you will be able to create a lonked server to SQL Server
>> 2000/2005
>> Or perhaps you are talking about BACKUP and RESTORE databases
> Whats a 'lonked ' server ?
>
>
> "Uri Dimant" wrote in message
>
>> Goofy
>>
>>> 1.) I use a custom solution to prevent people accessing my reports
>>> currently, by coding the form not to allow users who dont appear in my
>>> access control table for reports. I was wondering what kind of security
>>> facilities are available in SQL 2005 to allow me to do this ? I dont
>>> want it based on Windows NT Group membership.
>>
>> Security is a huge subject in SQL Server 2005 , I'd suggest you to spend
>> a few days to sudy it.BOL is a good start
>>
>>
>>> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point
>>> of view )
>>
>> Yes
>>
>>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>>> onto the 2005 servier so I can do development on the 2005 server
>>> configuration before I switch users over ?
>>
>> No, but you will be able to create a lonked server to SQL Server
>> 2000/2005
>> Or perhaps you are talking about BACKUP and RESTORE databases
>>
>>
>>> 4.) When I look at the licencing costs, they refer to number of users.
>>> In the ASP.NET evnvironment, does the ASPNET account act as one of those
>>> user
>>
>> I'm not an ASP.NET expert
>>
>>> 5.) Finally, can you still access SQL 2005 with the SQL server username
>>> and password like you can in SQL 2000?
>>
>> You will have to re-create them again on SQL Server 2005
>>
>>
>> "Goofy" wrote in message
>>
>>> Hi All,
>>>
>>> Not sure if this is the most appropriate group to ask this, so
>>> appologies if its in the wrong place, anyhow!
>>>
>>> Currently, we are running VS2003, SQL Server 2003 and have implemented a
>>> number of reports using the embedded Crystal Reports Version 9.
>>> Although this works, we want to get our systems up to date and convert
>>> the application to use ASP.NET 2.0 and Sql Server 2005 to make use of
>>> the reporting services.
>>>
>>> My Questions.
>>>
>>> 1.) I use a custom solution to prevent people accessing my reports
>>> currently, by coding the form not to allow users who dont appear in my
>>> access control table for reports. I was wondering what kind of security
>>> facilities are available in SQL 2005 to allow me to do this ? I dont
>>> want it based on Windows NT Group membership.
>>>
>>> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point
>>> of view )
>>>
>>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>>> onto the 2005 servier so I can do development on the 2005 server
>>> configuration before I switch users over ?
>>>
>>>
>>> 4.) When I look at the licencing costs, they refer to number of users.
>>> In the ASP.NET evnvironment, does the ASPNET account act as one of those
>>> user
>>>
>>> 5.) Finally, can you still access SQL 2005 with the SQL server username
>>> and password like you can in SQL 2000?
>>>
>>> Thanks for your help
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> --
>>> Goofy
>>>
>>
>>
>
> >> Stay informed about: Upgrading From SQL 2000 A few questions. |
|
| Back to top |
|
 |  |
External

Since: Oct 24, 2006 Posts: 40
|
(Msg. 7) Posted: Mon Dec 04, 2006 3:10 pm
Post subject: Re: Upgrading From SQL 2000 A few questions. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Uri,
Thanks for your help. Much appreciated!
"Uri Dimant" wrote in message
> Goofy
>
>> What I meant was does SQL Server 2005 still use sql username/password
>> logon authority or has it gone over to just windows integrated alone.
>
> It has . However a syntax a little bit different. Take a look at CREATE
> LOGIN .... in the BOL
>
>> Whats a 'lonked ' server ?
>
> Sorry, should be "linked servers"
>
>
> "Goofy" wrote in message
>
>> Thanks for your answers. Just a couple of comments.
>>
>>>> 5.) Finally, can you still access SQL 2005 with the SQL server
>>>> username and password like you can in SQL 2000?
>>>
>>> You will have to re-create them again on SQL Server 2005
>> What I meant was does SQL Server 2005 still use sql username/password
>> logon authority or has it gone over to just windows integrated alone.
>>
>>>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>>>> onto the 2005 servier so I can do development on the 2005 server
>>>> configuration before I switch users over ?
>>>
>>> No, but you will be able to create a lonked server to SQL Server
>>> 2000/2005
>>> Or perhaps you are talking about BACKUP and RESTORE databases
>> Whats a 'lonked ' server ?
>>
>>
>> "Uri Dimant" wrote in message
>>
>>> Goofy
>>>
>>>> 1.) I use a custom solution to prevent people accessing my reports
>>>> currently, by coding the form not to allow users who dont appear in my
>>>> access control table for reports. I was wondering what kind of security
>>>> facilities are available in SQL 2005 to allow me to do this ? I dont
>>>> want it based on Windows NT Group membership.
>>>
>>> Security is a huge subject in SQL Server 2005 , I'd suggest you to
>>> spend a few days to sudy it.BOL is a good start
>>>
>>>
>>>> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point
>>>> of view )
>>>
>>> Yes
>>>
>>>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>>>> onto the 2005 servier so I can do development on the 2005 server
>>>> configuration before I switch users over ?
>>>
>>> No, but you will be able to create a lonked server to SQL Server
>>> 2000/2005
>>> Or perhaps you are talking about BACKUP and RESTORE databases
>>>
>>>
>>>> 4.) When I look at the licencing costs, they refer to number of users.
>>>> In the ASP.NET evnvironment, does the ASPNET account act as one of
>>>> those user
>>>
>>> I'm not an ASP.NET expert
>>>
>>>> 5.) Finally, can you still access SQL 2005 with the SQL server
>>>> username and password like you can in SQL 2000?
>>>
>>> You will have to re-create them again on SQL Server 2005
>>>
>>>
>>> "Goofy" wrote in message
>>>
>>>> Hi All,
>>>>
>>>> Not sure if this is the most appropriate group to ask this, so
>>>> appologies if its in the wrong place, anyhow!
>>>>
>>>> Currently, we are running VS2003, SQL Server 2003 and have implemented
>>>> a number of reports using the embedded Crystal Reports Version 9.
>>>> Although this works, we want to get our systems up to date and convert
>>>> the application to use ASP.NET 2.0 and Sql Server 2005 to make use of
>>>> the reporting services.
>>>>
>>>> My Questions.
>>>>
>>>> 1.) I use a custom solution to prevent people accessing my reports
>>>> currently, by coding the form not to allow users who dont appear in my
>>>> access control table for reports. I was wondering what kind of security
>>>> facilities are available in SQL 2005 to allow me to do this ? I dont
>>>> want it based on Windows NT Group membership.
>>>>
>>>> 2.) Can you run SQL 2000 and 2005 side by side ( from a migration point
>>>> of view )
>>>>
>>>> 3.) If 2 is "YES", is it possible to mirror a SQL 2000 server database
>>>> onto the 2005 servier so I can do development on the 2005 server
>>>> configuration before I switch users over ?
>>>>
>>>>
>>>> 4.) When I look at the licencing costs, they refer to number of users.
>>>> In the ASP.NET evnvironment, does the ASPNET account act as one of
>>>> those user
>>>>
>>>> 5.) Finally, can you still access SQL 2005 with the SQL server
>>>> username and password like you can in SQL 2000?
>>>>
>>>> Thanks for your help
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Goofy
>>>>
>>>
>>>
>>
>>
>
> >> Stay informed about: Upgrading From SQL 2000 A few questions. |
|
| Back to top |
|
 |  |
| Related Topics: | Upgrading Access project to Intranet based one - Thanks in Advance MY aceess (MDB) project (Emp.mdb) is a stand-alone application. It gets data from SQL Server 2000. Here is what I need to do. I want to upgrade my Access project so that company users log in and run my access project in company..
Upgrading from standard to Enterprise edition of sql svr20.. - Good morning, I just want to know if I can just run setup for sql server 2000 Enterprise to upgrade a standard edition install? Or would I have to uninstall SE and then load the enterprise version? I have replication running on a couple of DB's. ...
Upgrading backend from Access 97 to sql server - Hi I have a typical access app with both front and back ends in access 97. The database is running slow due to number of users approaching 20. I would ideally like to upgrade the backend to sql server if that would improve performance. My questions..
Questions about Views - For SQL 2000 and 2005 - What is the proper purpose of a view? Why should one use a veiw rather then a query or SP? Why would I avoid using a view? What are some common nameing conventions for views? What are some differences between a SQL 2000..
One of those best practice questions - Say we have a database which tracks customer orders with tables like this: Product - list of products available ID Name ProductItem - 1 record for each item that comes off the production line ID ProductID Customer ID Name CustomerRequest -... |
|
You can post new topics in this forum You can reply to topics in this forum You can edit your posts in this forum You can delete your posts in this forum You can vote in polls in this forum
|
|
|
|
 |
|
|