473,378 Members | 1,478 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Replacing VS .NET's SQL Server Express Edition Integration

I've seen many posts and ready articles discussing how changing the
membership & roles "provider" in VS .NET is easy, but have yet to see
instructions on how to do it.

If I already have SQL Server 2000 on a machine and didn't install SQL Server
2005 Express with my VS .NET installation, how do I set up my existing SQL
2000 server to be the membership & roles provider for ASP .NET?

Nov 29 '07 #1
10 1898
Hi Scott,

As for configuring ASP.NET 2.0 membership to connect SQL Server 2000, you
need to do the following things:

** use aspnet_regsql.exe tool to setup a database in sqlserver 2000 db

** add a new membership provider in your ASP.NET 2.0 application which use
a connectionstring pointed to your SQL Server 2000 database

Here are two web articles provided detailed steps:

#Configuring ASP.NET 2.0 Application Services to use SQL Server 2000 or SQL
Server 2005
http://weblogs.asp.net/scottgu/archi...25/423703.aspx

#Using ASP.NET 2.0 Membership API with SQL Server 2000
http://www.vikramlakhotia.com/Using_...ith_SQL_Server
_2000.aspx
Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>Reply-To: "Scott M." <sm**@nospam.nospam>
From: "Scott M." <sm**@nospam.nospam>
Subject: Replacing VS .NET's SQL Server Express Edition Integration
Date: Thu, 29 Nov 2007 00:15:44 -0500

I've seen many posts and ready articles discussing how changing the
membership & roles "provider" in VS .NET is easy, but have yet to see
instructions on how to do it.

If I already have SQL Server 2000 on a machine and didn't install SQL
Server
>2005 Express with my VS .NET installation, how do I set up my existing SQL
2000 server to be the membership & roles provider for ASP .NET?

Nov 29 '07 #2
You beat me to it, Steven... ;-)

Second link reposted, to fix it, as it was broken into 2 lines.

!#Using ASP.NET 2.0 Membership API with SQL Server 2000
!http://www.vikramlakhotia.com/Using_...rver_2000.aspx

Something to keep in mind, too, is that SQL Server 2000 and SQL Server 2005 Express can coexist.
I have them both running on the same testbox at the same time.

That way, you don't have to deal with custom implementations which might require old syntax.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
"Steven Cheng[MSFT]" <st*****@online.microsoft.comwrote in message news:n7**************@TK2MSFTNGHUB02.phx.gbl...
Hi Scott,

As for configuring ASP.NET 2.0 membership to connect SQL Server 2000, you
need to do the following things:

** use aspnet_regsql.exe tool to setup a database in sqlserver 2000 db

** add a new membership provider in your ASP.NET 2.0 application which use
a connectionstring pointed to your SQL Server 2000 database

Here are two web articles provided detailed steps:

#Configuring ASP.NET 2.0 Application Services to use SQL Server 2000 or SQL
Server 2005
http://weblogs.asp.net/scottgu/archi...25/423703.aspx

#Using ASP.NET 2.0 Membership API with SQL Server 2000
http://www.vikramlakhotia.com/Using_...ith_SQL_Server
_2000.aspx
Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>>Reply-To: "Scott M." <sm**@nospam.nospam>
From: "Scott M." <sm**@nospam.nospam>
Subject: Replacing VS .NET's SQL Server Express Edition Integration
Date: Thu, 29 Nov 2007 00:15:44 -0500

I've seen many posts and ready articles discussing how changing the
membership & roles "provider" in VS .NET is easy, but have yet to see
instructions on how to do it.

If I already have SQL Server 2000 on a machine and didn't install SQL
Server
>>2005 Express with my VS .NET installation, how do I set up my existing SQL
2000 server to be the membership & roles provider for ASP .NET?


Nov 29 '07 #3
Ok, ScottGu's blog was a good link to answer my question.

So, now I have a follow up question, which came up in Scott's blog, but was
not answered:

If I have an existing database with my own user/password data already in a
table, how can I configure ASP .NET to use that data? How would the
provider know to use my tables and what field represents what data?


"Steven Cheng[MSFT]" <st*****@online.microsoft.comwrote in message
news:n7**************@TK2MSFTNGHUB02.phx.gbl...
Hi Scott,

As for configuring ASP.NET 2.0 membership to connect SQL Server 2000, you
need to do the following things:

** use aspnet_regsql.exe tool to setup a database in sqlserver 2000 db

** add a new membership provider in your ASP.NET 2.0 application which use
a connectionstring pointed to your SQL Server 2000 database

Here are two web articles provided detailed steps:

#Configuring ASP.NET 2.0 Application Services to use SQL Server 2000 or
SQL
Server 2005
http://weblogs.asp.net/scottgu/archi...25/423703.aspx

#Using ASP.NET 2.0 Membership API with SQL Server 2000
http://www.vikramlakhotia.com/Using_...ith_SQL_Server
_2000.aspx
Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.

--------------------
>>Reply-To: "Scott M." <sm**@nospam.nospam>
From: "Scott M." <sm**@nospam.nospam>
Subject: Replacing VS .NET's SQL Server Express Edition Integration
Date: Thu, 29 Nov 2007 00:15:44 -0500

I've seen many posts and ready articles discussing how changing the
membership & roles "provider" in VS .NET is easy, but have yet to see
instructions on how to do it.

If I already have SQL Server 2000 on a machine and didn't install SQL
Server
>>2005 Express with my VS .NET installation, how do I set up my existing SQL
2000 server to be the membership & roles provider for ASP .NET?

Nov 30 '07 #4
Thanks Juan,

I always encounter such broken link issue due to the tool my used :(

Thanks for correcting it.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>From: "Juan T. Llibre" <no***********@nowhere.com>
References: <B2**********************************@microsoft.co m>
<n7**************@TK2MSFTNGHUB02.phx.gbl>
>Subject: Re: Replacing VS .NET's SQL Server Express Edition Integration
Date: Thu, 29 Nov 2007 05:59:47 -0400

You beat me to it, Steven... ;-)

Second link reposted, to fix it, as it was broken into 2 lines.

!#Using ASP.NET 2.0 Membership API with SQL Server 2000
!>
http://www.vikramlakhotia.com/Using_...ith_SQL_Server
_2000.aspx
>
Something to keep in mind, too, is that SQL Server 2000 and SQL Server
2005 Express can coexist.
>I have them both running on the same testbox at the same time.

That way, you don't have to deal with custom implementations which might
require old syntax.
>

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
"Steven Cheng[MSFT]" <st*****@online.microsoft.comwrote in message
news:n7**************@TK2MSFTNGHUB02.phx.gbl...
>Hi Scott,

As for configuring ASP.NET 2.0 membership to connect SQL Server 2000, you
need to do the following things:

** use aspnet_regsql.exe tool to setup a database in sqlserver 2000 db

** add a new membership provider in your ASP.NET 2.0 application which
use
>a connectionstring pointed to your SQL Server 2000 database

Here are two web articles provided detailed steps:

#Configuring ASP.NET 2.0 Application Services to use SQL Server 2000 or
SQL
>Server 2005
http://weblogs.asp.net/scottgu/archi...25/423703.aspx

#Using ASP.NET 2.0 Membership API with SQL Server 2000
http://www.vikramlakhotia.com/Using_...ith_SQL_Server
>_2000.aspx
Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

================================================= =

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
>ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
>where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
>up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.
>>


--------------------
>>>Reply-To: "Scott M." <sm**@nospam.nospam>
From: "Scott M." <sm**@nospam.nospam>
Subject: Replacing VS .NET's SQL Server Express Edition Integration
Date: Thu, 29 Nov 2007 00:15:44 -0500

I've seen many posts and ready articles discussing how changing the
membership & roles "provider" in VS .NET is easy, but have yet to see
instructions on how to do it.

If I already have SQL Server 2000 on a machine and didn't install SQL
Server
>>>2005 Express with my VS .NET installation, how do I set up my existing
SQL
>>>2000 server to be the membership & roles provider for ASP .NET?



Nov 30 '07 #5
Thanks for your reply Scott,

As you said you already have an existing database that contains the
username/password, is that database previously used by membership
provider(in SQL Express)? If so, since that database has the correct
membership structure, you can surely use it. An easy way is to simply
attach the old database to new server instance(or use SSIS is they're of
diffferent version). If the database is not a membership database(but
your own user account database), I'm afraid you will need to maually import
those user account info into ASP.NET membership database through
membership APIS(such as adduser...).

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>Reply-To: "Scott M." <sm**@nospam.nospam>
From: "Scott M." <sm**@nospam.nospam>
Subject: Re: Replacing VS .NET's SQL Server Express Edition Integration
Date: Thu, 29 Nov 2007 21:19:14 -0500
Ok, ScottGu's blog was a good link to answer my question.

So, now I have a follow up question, which came up in Scott's blog, but
was
>not answered:

If I have an existing database with my own user/password data already in a
table, how can I configure ASP .NET to use that data? How would the
provider know to use my tables and what field represents what data?


"Steven Cheng[MSFT]" <st*****@online.microsoft.comwrote in message
news:n7**************@TK2MSFTNGHUB02.phx.gbl...
>Hi Scott,

As for configuring ASP.NET 2.0 membership to connect SQL Server 2000, you
need to do the following things:

** use aspnet_regsql.exe tool to setup a database in sqlserver 2000 db

** add a new membership provider in your ASP.NET 2.0 application which
use
>a connectionstring pointed to your SQL Server 2000 database

Here are two web articles provided detailed steps:

#Configuring ASP.NET 2.0 Application Services to use SQL Server 2000 or
SQL
Server 2005
http://weblogs.asp.net/scottgu/archi...25/423703.aspx

#Using ASP.NET 2.0 Membership API with SQL Server 2000
http://www.vikramlakhotia.com/Using_...ith_SQL_Server
>_2000.aspx
Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

================================================= =

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
>ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
>where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
>up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.

--------------------
>>>Reply-To: "Scott M." <sm**@nospam.nospam>
From: "Scott M." <sm**@nospam.nospam>
Subject: Replacing VS .NET's SQL Server Express Edition Integration
Date: Thu, 29 Nov 2007 00:15:44 -0500

I've seen many posts and ready articles discussing how changing the
membership & roles "provider" in VS .NET is easy, but have yet to see
instructions on how to do it.

If I already have SQL Server 2000 on a machine and didn't install SQL
Server
>>>2005 Express with my VS .NET installation, how do I set up my existing
SQL
>>>2000 server to be the membership & roles provider for ASP .NET?


Nov 30 '07 #6
1. You could write a custom membership provider.

These articles explain :

http://weblogs.asp.net/scottgu/archi...17/427731.aspx

http://msdn2.microsoft.com/en-us/library/aa479038.aspx

http://www.15seconds.com/issue/050216.htm

2. You could add the tables you need to your existing database table.

Here's a guide : http://www.steamed-design.com/

....and here's info on aspnet_regsql.exe :

http://msdn2.microsoft.com/en-us/lib...62(vs.80).aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
"Scott M." <sm**@nospam.nospamwrote in message news:1C**********************************@microsof t.com...
Ok, ScottGu's blog was a good link to answer my question.

So, now I have a follow up question, which came up in Scott's blog, but was not answered:

If I have an existing database with my own user/password data already in a table, how can I configure ASP .NET to use
that data? How would the provider know to use my tables and what field represents what data?


"Steven Cheng[MSFT]" <st*****@online.microsoft.comwrote in message news:n7**************@TK2MSFTNGHUB02.phx.gbl...
>Hi Scott,

As for configuring ASP.NET 2.0 membership to connect SQL Server 2000, you
need to do the following things:

** use aspnet_regsql.exe tool to setup a database in sqlserver 2000 db

** add a new membership provider in your ASP.NET 2.0 application which use
a connectionstring pointed to your SQL Server 2000 database

Here are two web articles provided detailed steps:

#Configuring ASP.NET 2.0 Application Services to use SQL Server 2000 or SQL
Server 2005
http://weblogs.asp.net/scottgu/archi...25/423703.aspx

#Using ASP.NET 2.0 Membership API with SQL Server 2000
http://www.vikramlakhotia.com/Using_...ith_SQL_Server
_2000.aspx
Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

================================================= =

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

================================================= =
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>>>Reply-To: "Scott M." <sm**@nospam.nospam>
From: "Scott M." <sm**@nospam.nospam>
Subject: Replacing VS .NET's SQL Server Express Edition Integration
Date: Thu, 29 Nov 2007 00:15:44 -0500

I've seen many posts and ready articles discussing how changing the
membership & roles "provider" in VS .NET is easy, but have yet to see
instructions on how to do it.

If I already have SQL Server 2000 on a machine and didn't install SQL
Server
>>>2005 Express with my VS .NET installation, how do I set up my existing SQL
2000 server to be the membership & roles provider for ASP .NET?


Nov 30 '07 #7
If the database is not a membership database(but
your own user account database), I'm afraid you will need to maually
import
those user account info into ASP.NET membership database through
membership APIS(such as adduser...).
Yes, this would be the case. Can you tell me what APIS(such as adduser...)
means? Thanks!

Nov 30 '07 #8
Sure Scott,

For the APIs, just configure your membership provider and then use the
"Membership" class's static methods such as "CreateUser" and "DeleteUser"

CreateUser Overloaded. Adds a new user to the data store.
DeleteUser Overloaded. Deletes a user from the database.

#Membership Methods
http://msdn2.microsoft.com/en-us/lib...embership_meth
ods.aspx
Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Reply-To: "Scott M." <sm**@nospam.nospam>
From: "Scott M." <sm**@nospam.nospam>
References: <B2**********************************@microsoft.co m>
<n7**************@TK2MSFTNGHUB02.phx.gbl>
<1C**********************************@microsoft.co m>
<b#**************@TK2MSFTNGHUB02.phx.gbl>
>In-Reply-To: <b#**************@TK2MSFTNGHUB02.phx.gbl>
Subject: Re: Replacing VS .NET's SQL Server Express Edition Integration
Date: Fri, 30 Nov 2007 00:52:38 -0500
>
>If the database is not a membership database(but
your own user account database), I'm afraid you will need to maually
import
those user account info into ASP.NET membership database through
membership APIS(such as adduser...).

Yes, this would be the case. Can you tell me what APIS(such as
adduser...)
>means? Thanks!

Nov 30 '07 #9
re:
!Can you tell me what APIS(such as adduser...) means? Thanks!

Here's a complete guide :

http://msdn2.microsoft.com/en-us/ms366730(VS.80).aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
"Scott M." <sm**@nospam.nospamwrote in message news:03**********************************@microsof t.com...
>If the database is not a membership database(but
your own user account database), I'm afraid you will need to maually import
those user account info into ASP.NET membership database through
membership APIS(such as adduser...).

Yes, this would be the case. Can you tell me what APIS(such as adduser...) means? Thanks!

Nov 30 '07 #10
You may find this post:
http://sholliday.spaces.live.com/blog/cns!A68482B9628A842A!160.entry

about transferring existing data to a new database...helpful.

...

"Scott M." <sm**@nospam.nospamwrote in message
news:B2**********************************@microsof t.com...
I've seen many posts and ready articles discussing how changing the
membership & roles "provider" in VS .NET is easy, but have yet to see
instructions on how to do it.

If I already have SQL Server 2000 on a machine and didn't install SQL
Server 2005 Express with my VS .NET installation, how do I set up my
existing SQL 2000 server to be the membership & roles provider for ASP
.NET?

Dec 4 '07 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Darryl Kerkeslager | last post by:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsse/html/sseoverview.asp SQL Server Express was developed with two distinct uses in mind. The first is as a server product,...
3
by: Ioannis Vranos | last post by:
In http://lab.msdn.microsoft.com/vs2005/productinfo/productline it is mentioned that the express edition and standard edition have no "SQL Server 2005 Integration". Does it mean that they will...
3
by: Dan Sikorsky | last post by:
Can I use SQLServer 2000 with ASP.NET 2.0 instead of SQLServer 2005, and use the .Net 2.0 Membership functionality? I've setup my Login page, controls, etc., and now it's time to use the Web...
16
by: Jeremy S. | last post by:
I'm about to install VS.NET 2005 and SQL Server 2005 on a new/clean development machine (XP Pro/SP2 etc). Is the order of installation important (i.e., which product should I install first)? ...
2
by: Jobs | last post by:
Download the JAVA , .NET and SQL Server interview with answers Download the JAVA , .NET and SQL Server interview sheet and rate yourself. This will help you judge yourself are you really worth of...
9
by: Greg | last post by:
Is there no ASP.NET in C# express edition ?
0
by: shamirza | last post by:
· When was .NET announced? Bill Gates delivered a keynote at Forum 2000, held June 22, 2000, outlining the .NET 'vision'. The July 2000 PDC had a number of sessions on .NET technology, and...
1
by: BobLewiston | last post by:
I installed SQL Server 2008 Express, basic edition (SQLEXPR32_x86_ENU_Bootstrapper.exe, version 9.0.30729.1) without any problem. Then I attempted to install AdventureWorks Sample Databases for...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.