Showing posts with label link. Show all posts
Showing posts with label link. Show all posts

Wednesday, March 28, 2012

Install or uninstall .NET Framework 2.0

I want to instal Sql Server express, problem is

On this link http://msdn.microsoft.com/vstudio/express/sql/download/ , they say
you must uninstall any previous versions of ... and the .NET Framework 2.0.
Yet here on step two in the instruction section in this link http://www.microsoft.com/downloads/details.aspx?familyid=220549b5-0b07-4448-8848-dcc397514b41&displaylang=en
they say I should install it

Where is the truth!

First, if you have a prerelease build of .Net Framework 2.0 installed on your machine you need to uninstall it. There is no way around this.

Second, in order to install SQL Server Express, you need to first install the released version of .Net Framework.

So yes, you need to uninstall and then install to install SQL Server Express. The key information is you're uninstalling prerelease builds and installing the final release build.

I hope this clears up the confusion.

Cheers,
Dan

Monday, March 12, 2012

Install 2005 Enterprise Edition on windows XP Home Edition has pro

I am trying to install the sql server 2005 trial edition on my home pc with
windows xp home edition, based on the link should be fine, but after that
start management studio failed to connect to the database engine
http://www.microsoft.com/sql/downloads/trial-system-requirements.mspx,
so does this os actually could support the trial software? thank youAccording to the BOL entry for Hardware and Software Requirements for
Installing SQL Server 2005 you need Windows XP Professional to install the
Evaluation edition.
Ben Nevarez
Senior Database Administrator
AIG SunAmerica
"tulip" wrote:
> I am trying to install the sql server 2005 trial edition on my home pc with
> windows xp home edition, based on the link should be fine, but after that
> start management studio failed to connect to the database engine
> http://www.microsoft.com/sql/downloads/trial-system-requirements.mspx,
> so does this os actually could support the trial software? thank you|||... and here's the I-URL:
http://msdn2.microsoft.com/en-us/library/ms143506.aspx
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
"Ben Nevarez" <BenNevarez@.discussions.microsoft.com> wrote in message
news:164FDD7B-3ADD-4CE4-8958-3BEF6787C5BB@.microsoft.com...
> According to the BOL entry for Hardware and Software Requirements for
> Installing SQL Server 2005 you need Windows XP Professional to install the
> Evaluation edition.
> Ben Nevarez
> Senior Database Administrator
> AIG SunAmerica
>
> "tulip" wrote:
>> I am trying to install the sql server 2005 trial edition on my home pc with
>> windows xp home edition, based on the link should be fine, but after that
>> start management studio failed to connect to the database engine
>> http://www.microsoft.com/sql/downloads/trial-system-requirements.mspx,
>> so does this os actually could support the trial software? thank you

Friday, February 24, 2012

Inserting records using the details view or programmatically

I'm a new user to vwd.

If I use a details view control on my page, I have noticed that the "New" link is not visible unless there is at least one record in the table. Is there any way of making it visible where there aren't any records?

My web pages are currently hosted at vwdhosting. I have uploaded my database with the record structure onto the web site and I am using a remote connection string to access it. I have had users updating data in another table on the remote database. If I add records to my new table locally and upload the database to the remote site, all the data that my users have been adding will be lost.

So, if I can't add my first record using a control on my web page when there are no records in the table, should I be doing it programmatically? If so, how?

Thanks,

Julie

Use the empty template. Add a button, that has a commandname of "New".

I usually use something like:

No records found, <asp:button ...>Add a new record</asp:button>

as the empty template.

|||Fabulous, thank you.