Showing posts with label deployment. Show all posts
Showing posts with label deployment. Show all posts

Sunday, March 11, 2012

Accesing database after website deployment

Hi

I'm using sqlexpress on development machine and on client server. I'm building a webapp using membership and role provided for asp. In web.config I have definet membership provider and role provider to point to my database.

After web site deployment I get allways message : Failed to update database "c:\app\app.MDF" because the database is read-only, and I'm forced to apply rights for ASPNET. More than that somethimes I must re-register users.

I have tried to modify in web.config with <remove name="LocalSqlServer"/> <add name="LocalSqlServer"...> but I get errors if I try to design my dataset file:"Cannot get web application service".

TIA

Paul

To manipulate the database file, the account used to connect to the database must have read/write permission on the folder where the database file locates.|||Do you get other error message? I guess the problem is permission.|||

Hi

I think the problem is when I use SourceSafe, all folders in projects are maded read only.

Sometimes I get some error about NT Serveces does not have right on database, but that eror I have fised from SQL .


Paul

|||

I agree with you.You should add NT Service to access some folders in security.Change your database file property not to readonly.

Tuesday, March 6, 2012

About the new MSDE

I am in the process of downgrading an MSDE database to a Jet (Access)
database for the following reason:
1. Size: Deployment of an MSDE database engine is inflating my distribution
file (Setup.exe) over 20 Megs! With an Access database this number is ZERO
because all the infrastructure to access my Access database is already
included on the .Net framework.
2. Setup: MSDE is complex to setup, you pretty much have to use an installer
to accomplish this where with an Access database you just copy the mdb file
and you are done.
3. Maintainability: With MSDE I will have to issue independent patches for
fixes to the MSDE engine where with an Access database, fixes are included
in the .Net framework service pack.
4. Portability: With a .Net application and an Access database, I could copy
my program and the database into a USB memory stick or a writable CD and
actually run my application from there, this is a big deal for me as people
can carry my application on their USB keychain and use it any time in any
computer. This is not possible with MSDE.
Number 1 & 4 are biggies for me. The think that really bothers me is that my
application already runs online against an SQL server database so using an
MSDE to have the database running locally makes it EXTREMELY simple for me
because I can use the exact same SQL server database directly were with
access I will have create a new database, rewrite my stored procedure logic
and maintain 2 database (online SQL server and local Access database).
If the new version of MSDE is basically the same thing as the old MSDE
except that it has more features then I guess I am doomed and I will have to
use an Access database.
Any comment regarding my predicament are very much appreciated. Thanks.
hi Rene,
Rene wrote:
> I am in the process of downgrading an MSDE database to a Jet (Access)
> database for the following reason:
> 1. Size: Deployment of an MSDE database engine is inflating my
> distribution file (Setup.exe) over 20 Megs! With an Access database
> this number is ZERO because all the infrastructure to access my
> Access database is already included on the .Net framework.
actually 43mb :D
http://www.microsoft.com/downloads/d...displaylang=en

> 2. Setup: MSDE is complex to setup, you pretty much have to use an
> installer to accomplish this where with an Access database you just
> copy the mdb file and you are done.
right, but the installer can really be a little companion tool that provides
an UI to the setup.exe boostrap installer to gather all required parameters
and user options, then shells to setup.exe... but ok, it's more complex than
mdb file copy..

> 3. Maintainability: With MSDE I will have to issue independent
> patches for fixes to the MSDE engine where with an Access database,
> fixes are included in the .Net framework service pack.
AFAIK .Net FWK does not contain MDAC... and MDAC itself, up to v. 2.6 no
longer provides the JET components, so you manually have to install/upgrade
it.. ok, actual Win OS releases already have it as part of core
installation, but you have to manually upgrade JET "things"..

> 4. Portability: With a .Net application and an Access database, I
> could copy my program and the database into a USB memory stick or a
> writable CD and actually run my application from there, this is a big
> deal for me as people can carry my application on their USB keychain
> and use it any time in any computer. This is not possible with MSDE.
you can do sort of this with MSDE too... your application must attach the
dbs residing on the USB key at application start up, and obviously detach
them before key removal (or the dbs will be marked as suspect).. this is not
the very best solution for SQL Server database, both for performance and
security reasons, but it can be done... and, of course, even if this is an
MSDE default setting, set the autoclose db option :D
just a side note... I recently bought an USB key and read something about
100.000 writes warranty...
well, I really do not know how long does it takes for SQL Server/MSDE (but
even JET) to exceed this value, but I'd expect not that much time... so
stay tuned :D

> Number 1 & 4 are biggies for me. The think that really bothers me is
> that my application already runs online against an SQL server
> database so using an MSDE to have the database running locally makes
> it EXTREMELY simple for me because I can use the exact same SQL
> server database directly were with access I will have create a new
> database, rewrite my stored procedure logic and maintain 2 database
> (online SQL server and local Access database).
> If the new version of MSDE is basically the same thing as the old MSDE
> except that it has more features then I guess I am doomed and I will
> have to use an Access database.
SQLExpress will support (single user) User Instances,
http://tinyurl.com/bm3to , that combined with .Net XCopy deployment can
perhaps get your point...
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz/DbaMgr.shtmhttp://italy.mvps.org
DbaMgr2k ver 0.15.0 - DbaMgr ver 0.60.0
(my vb6+sql-dmo little try to provide MS MSDE 1.0 and MSDE 2000 a visual
interface)
-- remove DMO to reply
|||Hi Andrea:

> AFAIK .Net FWK does not contain MDAC... and MDAC itself, up to v. 2.6 no
> longer provides the JET components, so you manually have to
> install/upgrade it.. ok, actual Win OS releases already have it as part of
> core installation, but you have to manually upgrade JET "things"..
I know for sure of two things about this Access db trip. The first one is
that I am using ADO.Net as my data object layer and the second one, that I
am using the Microsoft.Jet.OLEDB.4.0 provider and as a result the Jet
engine.
I did some research on the web and found out that it looks like the
"smarties" form Microsoft are retiring the Jet engine and we now can all
look forward to having to distribute a 70 Megabytes SQL express to go with
our little 2 meg applications.
It also looks like the Jet engine is indeed distributed with the OS (after
Win 2000), I am wondering if this will stop happening with new OS versions.
For earlier version of Windows I guess I will have to distribute the MDAC
2.6 and pray that that comes with Jet 4.0
Frankly, I think this is absolutely retarded, Access/Jet were perfect for
your average database application and it should be fully supported and
distribute on the .Net. This is REALLY stupid.
|||> Frankly, I think this is absolutely retarded, Access/Jet were perfect for
> your average database application and it should be fully supported and
> distribute on the .Net. This is REALLY stupid.
Luckily it seems both Access and Jet will survive.
Check this:
http://blogs.msdn.com/access/
Jesper
|||I don't know where you did your research on the web, but it is
absolutely inaccurate. Access/Jet will continue to be supported for
exactly the scenario you describe, and is being enhanced for Office
12, which is now in limited technical beta.
Bear in mind that Access/Jet is not recommended for Web apps or even
heavy-duty intranet apps, and you should be fine.
--Mary
On Fri, 18 Nov 2005 15:19:43 -0600, "Rene" <nospam@.nospam.com> wrote:

>Hi Andrea:
>
>I know for sure of two things about this Access db trip. The first one is
>that I am using ADO.Net as my data object layer and the second one, that I
>am using the Microsoft.Jet.OLEDB.4.0 provider and as a result the Jet
>engine.
>I did some research on the web and found out that it looks like the
>"smarties" form Microsoft are retiring the Jet engine and we now can all
>look forward to having to distribute a 70 Megabytes SQL express to go with
>our little 2 meg applications.
>It also looks like the Jet engine is indeed distributed with the OS (after
>Win 2000), I am wondering if this will stop happening with new OS versions.
>For earlier version of Windows I guess I will have to distribute the MDAC
>2.6 and pray that that comes with Jet 4.0
>Frankly, I think this is absolutely retarded, Access/Jet were perfect for
>your average database application and it should be fully supported and
>distribute on the .Net. This is REALLY stupid.
>

Saturday, February 11, 2012

about deployment with database

Hai,
We created one application, in .net with sql server 2005. we
created the setup file also.
Now we want to install the application in client place, But,
client don't have any sql server in their system. I heard about with
MSDE, there is no need for sql server.
Anybody can explain, what we have to do now.
Regards,
Raju.Go to www.microsoft.com/sql and look at the SQL Server 2005 Express.
It is a 'FREE' product, the successor to MSDE, and may serve your needs.
SQL Server 2005 Express Edition Feature Comparison
http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
SQL Server 2005 Express Overview
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsse/html/sseoverview.asp
http://www.pcw.co.uk/personal-computer-world/software/2155087/review-microsoft-sql-server
Arnie Rowland, Ph.D.
Westwood Consulting, Inc
Most good judgment comes from experience.
Most experience comes from bad judgment.
- Anonymous
You can't help someone get up a hill without getting a little closer to the
top yourself.
- H. Norman Schwarzkopf
"raju" <ponnurajs@.gmail.com> wrote in message
news:1162015230.775017.143230@.i42g2000cwa.googlegroups.com...
> Hai,
> We created one application, in .net with sql server 2005. we
> created the setup file also.
> Now we want to install the application in client place, But,
> client don't have any sql server in their system. I heard about with
> MSDE, there is no need for sql server.
> Anybody can explain, what we have to do now.
> Regards,
> Raju.
>|||Hai,
Thanks for you immediate response.
Whether we have to install the sql server 2005 express manually, is
it possible to install the sql server 2005 from our .net application
automatically.
First we will deploy, required installation files and database
files in our application.
So, when we install the application, first the sql server 2005
express will install and after that out application will get installed.
If this one is possible then, please give me the procedure for
that.
Thanks in advance.
Regards,
Raju.|||See:
SQL Server 2005 Unintended Installations
http://www.devx.com/dbzone/Article/31648
Arnie Rowland, Ph.D.
Westwood Consulting, Inc
Most good judgment comes from experience.
Most experience comes from bad judgment.
- Anonymous
You can't help someone get up a hill without getting a little closer to the
top yourself.
- H. Norman Schwarzkopf
"raju" <ponnurajs@.gmail.com> wrote in message
news:1162021453.839712.248670@.i3g2000cwc.googlegroups.com...
> Hai,
> Thanks for you immediate response.
> Whether we have to install the sql server 2005 express manually, is
> it possible to install the sql server 2005 from our .net application
> automatically.
> First we will deploy, required installation files and database
> files in our application.
> So, when we install the application, first the sql server 2005
> express will install and after that out application will get installed.
> If this one is possible then, please give me the procedure for
> that.
> Thanks in advance.
> Regards,
> Raju.
>|||> SQL Server 2005 Unintended Installations
Freudian slip, Arnie? :-)
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
"Arnie Rowland" <arnie@.1568.com> wrote in message news:OFd5COr%23GHA.3952@.TK2MSFTNGP03.phx.gbl...
> See:
> SQL Server 2005 Unintended Installations
> http://www.devx.com/dbzone/Article/31648
>
> --
> Arnie Rowland, Ph.D.
> Westwood Consulting, Inc
> Most good judgment comes from experience.
> Most experience comes from bad judgment.
> - Anonymous
> You can't help someone get up a hill without getting a little closer to the
> top yourself.
> - H. Norman Schwarzkopf
>
> "raju" <ponnurajs@.gmail.com> wrote in message
> news:1162021453.839712.248670@.i3g2000cwc.googlegroups.com...
>> Hai,
>> Thanks for you immediate response.
>> Whether we have to install the sql server 2005 express manually, is
>> it possible to install the sql server 2005 from our .net application
>> automatically.
>> First we will deploy, required installation files and database
>> files in our application.
>> So, when we install the application, first the sql server 2005
>> express will install and after that out application will get installed.
>> If this one is possible then, please give me the procedure for
>> that.
>> Thanks in advance.
>> Regards,
>> Raju.
>|||Got me...
But sometimes, the user may not have 'intended' to end up with a SQL
installation -but they get one anyway.
--
Arnie Rowland, Ph.D.
Westwood Consulting, Inc
Most good judgment comes from experience.
Most experience comes from bad judgment.
- Anonymous
You can't help someone get up a hill without getting a little closer to the
top yourself.
- H. Norman Schwarzkopf
"Tibor Karaszi" <tibor_please.no.email_karaszi@.hotmail.nomail.com> wrote in
message news:OaGw9Xr%23GHA.4708@.TK2MSFTNGP05.phx.gbl...
>> SQL Server 2005 Unintended Installations
> Freudian slip, Arnie? :-)
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://www.solidqualitylearning.com/
>
> "Arnie Rowland" <arnie@.1568.com> wrote in message
> news:OFd5COr%23GHA.3952@.TK2MSFTNGP03.phx.gbl...
>> See:
>> SQL Server 2005 Unintended Installations
>> http://www.devx.com/dbzone/Article/31648
>>
>> --
>> Arnie Rowland, Ph.D.
>> Westwood Consulting, Inc
>> Most good judgment comes from experience.
>> Most experience comes from bad judgment.
>> - Anonymous
>> You can't help someone get up a hill without getting a little closer to
>> the top yourself.
>> - H. Norman Schwarzkopf
>>
>> "raju" <ponnurajs@.gmail.com> wrote in message
>> news:1162021453.839712.248670@.i3g2000cwc.googlegroups.com...
>> Hai,
>> Thanks for you immediate response.
>> Whether we have to install the sql server 2005 express manually, is
>> it possible to install the sql server 2005 from our .net application
>> automatically.
>> First we will deploy, required installation files and database
>> files in our application.
>> So, when we install the application, first the sql server 2005
>> express will install and after that out application will get installed.
>> If this one is possible then, please give me the procedure for
>> that.
>> Thanks in advance.
>> Regards,
>> Raju.
>>|||Hello Arnie Rowland,
Now we got the sqlexpress, when we run the applcation it is
running smoothly.
The database is from our application only. But when we run the
crystal reports it is refering the database logon information on the
machine, where we created the crystal reports.
I know the problem, why it is. Bec., we created the crystal
reports, using the local datasource only.
So, how to give the datasource, when we creating the crystal
reports.
Thanks in advance.
Regards,
Raju.|||That is a crystal reports issue, you need to change that in crystal reports. I suggest you post this
to some suitable crystal reports forum, as there isn't that high probability that you find experts
on crystal reports here.
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
"raju" <ponnurajs@.gmail.com> wrote in message
news:1162188434.813391.82120@.k70g2000cwa.googlegroups.com...
> Hello Arnie Rowland,
> Now we got the sqlexpress, when we run the applcation it is
> running smoothly.
> The database is from our application only. But when we run the
> crystal reports it is refering the database logon information on the
> machine, where we created the crystal reports.
> I know the problem, why it is. Bec., we created the crystal
> reports, using the local datasource only.
> So, how to give the datasource, when we creating the crystal
> reports.
> Thanks in advance.
> Regards,
> Raju.
>|||Hello,
Thanks for your response.
We can change that datasource at runtime also. Can you guide me
on how to do that.
Regards,
Raju.
Tibor Karaszi wrote:
> That is a crystal reports issue, you need to change that in crystal reports. I suggest you post this
> to some suitable crystal reports forum, as there isn't that high probability that you find experts
> on crystal reports here.
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://www.solidqualitylearning.com/
>
> "raju" <ponnurajs@.gmail.com> wrote in message
> news:1162188434.813391.82120@.k70g2000cwa.googlegroups.com...
> > Hello Arnie Rowland,
> >
> > Now we got the sqlexpress, when we run the applcation it is
> > running smoothly.
> >
> > The database is from our application only. But when we run the
> > crystal reports it is refering the database logon information on the
> > machine, where we created the crystal reports.
> >
> > I know the problem, why it is. Bec., we created the crystal
> > reports, using the local datasource only.
> >
> > So, how to give the datasource, when we creating the crystal
> > reports.
> >
> > Thanks in advance.
> >
> > Regards,
> > Raju.
> >|||> We can change that datasource at runtime also. Can you guide me
> on how to do that.
I've never used Crystal Reports. You need ask people who know Crystal Reports on how to do this.
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
"raju" <ponnurajs@.gmail.com> wrote in message
news:1162378360.362543.118220@.b28g2000cwb.googlegroups.com...
> Hello,
> Thanks for your response.
> We can change that datasource at runtime also. Can you guide me
> on how to do that.
> Regards,
> Raju.
> Tibor Karaszi wrote:
>> That is a crystal reports issue, you need to change that in crystal reports. I suggest you post
>> this
>> to some suitable crystal reports forum, as there isn't that high probability that you find
>> experts
>> on crystal reports here.
>> --
>> Tibor Karaszi, SQL Server MVP
>> http://www.karaszi.com/sqlserver/default.asp
>> http://www.solidqualitylearning.com/
>>
>> "raju" <ponnurajs@.gmail.com> wrote in message
>> news:1162188434.813391.82120@.k70g2000cwa.googlegroups.com...
>> > Hello Arnie Rowland,
>> >
>> > Now we got the sqlexpress, when we run the applcation it is
>> > running smoothly.
>> >
>> > The database is from our application only. But when we run the
>> > crystal reports it is refering the database logon information on the
>> > machine, where we created the crystal reports.
>> >
>> > I know the problem, why it is. Bec., we created the crystal
>> > reports, using the local datasource only.
>> >
>> > So, how to give the datasource, when we creating the crystal
>> > reports.
>> >
>> > Thanks in advance.
>> >
>> > Regards,
>> > Raju.
>> >
>

about deployment with database

Hai,
We created one application, in .net with sql server 2005. we
created the setup file also.
Now we want to install the application in client place, But,
client don't have any sql server in their system. I heard about with
MSDE, there is no need for sql server.
Anybody can explain, what we have to do now.
Regards,
Raju.Go to www.microsoft.com/sql and look at the SQL Server 2005 Express.
It is a 'FREE' product, the successor to MSDE, and may serve your needs.
SQL Server 2005 Express Edition Feature Comparison
http://www.microsoft.com/sql/prodin...e-features.mspx
SQL Server 2005 Express Overview
http://msdn.microsoft.com/library/d...r />
rview.asp
http://www.pcw.co.uk/personal-compu...
-server
Arnie Rowland, Ph.D.
Westwood Consulting, Inc
Most good judgment comes from experience.
Most experience comes from bad judgment.
- Anonymous
You can't help someone get up a hill without getting a little closer to the
top yourself.
- H. Norman Schwarzkopf
"raju" <ponnurajs@.gmail.com> wrote in message
news:1162015230.775017.143230@.i42g2000cwa.googlegroups.com...
> Hai,
> We created one application, in .net with sql server 2005. we
> created the setup file also.
> Now we want to install the application in client place, But,
> client don't have any sql server in their system. I heard about with
> MSDE, there is no need for sql server.
> Anybody can explain, what we have to do now.
> Regards,
> Raju.
>|||Hai,
Thanks for you immediate response.
Whether we have to install the sql server 2005 express manually, is
it possible to install the sql server 2005 from our .net application
automatically.
First we will deploy, required installation files and database
files in our application.
So, when we install the application, first the sql server 2005
express will install and after that out application will get installed.
If this one is possible then, please give me the procedure for
that.
Thanks in advance.
Regards,
Raju.|||See:
SQL Server 2005 Unintended Installations
http://www.devx.com/dbzone/Article/31648
Arnie Rowland, Ph.D.
Westwood Consulting, Inc
Most good judgment comes from experience.
Most experience comes from bad judgment.
- Anonymous
You can't help someone get up a hill without getting a little closer to the
top yourself.
- H. Norman Schwarzkopf
"raju" <ponnurajs@.gmail.com> wrote in message
news:1162021453.839712.248670@.i3g2000cwc.googlegroups.com...
> Hai,
> Thanks for you immediate response.
> Whether we have to install the sql server 2005 express manually, is
> it possible to install the sql server 2005 from our .net application
> automatically.
> First we will deploy, required installation files and database
> files in our application.
> So, when we install the application, first the sql server 2005
> express will install and after that out application will get installed.
> If this one is possible then, please give me the procedure for
> that.
> Thanks in advance.
> Regards,
> Raju.
>|||> SQL Server 2005 Unintended Installations
Freudian slip, Arnie? :-)
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
"Arnie Rowland" <arnie@.1568.com> wrote in message news:OFd5COr%23GHA.3952@.TK2MSFTNGP03.phx.g
bl...
> See:
> SQL Server 2005 Unintended Installations
> http://www.devx.com/dbzone/Article/31648
>
> --
> Arnie Rowland, Ph.D.
> Westwood Consulting, Inc
> Most good judgment comes from experience.
> Most experience comes from bad judgment.
> - Anonymous
> You can't help someone get up a hill without getting a little closer to th
e
> top yourself.
> - H. Norman Schwarzkopf
>
> "raju" <ponnurajs@.gmail.com> wrote in message
> news:1162021453.839712.248670@.i3g2000cwc.googlegroups.com...
>|||Got me...
But sometimes, the user may not have 'intended' to end up with a SQL
installation -but they get one anyway.
Arnie Rowland, Ph.D.
Westwood Consulting, Inc
Most good judgment comes from experience.
Most experience comes from bad judgment.
- Anonymous
You can't help someone get up a hill without getting a little closer to the
top yourself.
- H. Norman Schwarzkopf
"Tibor Karaszi" <tibor_please.no.email_karaszi@.hotmail.nomail.com> wrote in
message news:OaGw9Xr%23GHA.4708@.TK2MSFTNGP05.phx.gbl...[vbcol=seagreen]
> Freudian slip, Arnie? :-)
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://www.solidqualitylearning.com/
>
> "Arnie Rowland" <arnie@.1568.com> wrote in message
> news:OFd5COr%23GHA.3952@.TK2MSFTNGP03.phx.gbl...|||Hello Arnie Rowland,
Now we got the sqlexpress, when we run the applcation it is
running smoothly.
The database is from our application only. But when we run the
crystal reports it is refering the database logon information on the
machine, where we created the crystal reports.
I know the problem, why it is. Bec., we created the crystal
reports, using the local datasource only.
So, how to give the datasource, when we creating the crystal
reports.
Thanks in advance.
Regards,
Raju.|||That is a crystal reports issue, you need to change that in crystal reports.
I suggest you post this
to some suitable crystal reports forum, as there isn't that high probability
that you find experts
on crystal reports here.
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
"raju" <ponnurajs@.gmail.com> wrote in message
news:1162188434.813391.82120@.k70g2000cwa.googlegroups.com...
> Hello Arnie Rowland,
> Now we got the sqlexpress, when we run the applcation it is
> running smoothly.
> The database is from our application only. But when we run the
> crystal reports it is refering the database logon information on the
> machine, where we created the crystal reports.
> I know the problem, why it is. Bec., we created the crystal
> reports, using the local datasource only.
> So, how to give the datasource, when we creating the crystal
> reports.
> Thanks in advance.
> Regards,
> Raju.
>|||Hello,
Thanks for your response.
We can change that datasource at runtime also. Can you guide me
on how to do that.
Regards,
Raju.
Tibor Karaszi wrote:[vbcol=seagreen]
> That is a crystal reports issue, you need to change that in crystal report
s. I suggest you post this
> to some suitable crystal reports forum, as there isn't that high probabili
ty that you find experts
> on crystal reports here.
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://www.solidqualitylearning.com/
>
> "raju" <ponnurajs@.gmail.com> wrote in message
> news:1162188434.813391.82120@.k70g2000cwa.googlegroups.com...|||> We can change that datasource at runtime also. Can you guide me
> on how to do that.
I've never used Crystal Reports. You need ask people who know Crystal Report
s on how to do this.
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
"raju" <ponnurajs@.gmail.com> wrote in message
news:1162378360.362543.118220@.b28g2000cwb.googlegroups.com...
> Hello,
> Thanks for your response.
> We can change that datasource at runtime also. Can you guide me
> on how to do that.
> Regards,
> Raju.
> Tibor Karaszi wrote:
>