473,412 Members | 2,281 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,412 software developers and data experts.

Learning SQL Server 2000

I am a retailer whose software back-end has just been upgraded from Access
to SQL Server 2000. (The front-end is an independently-written shop Point Of
Sale system)

While I know a fair bit about computers, I know nothing about SQL Server.
And frankly, I don't want to know much. I don't need to build any new
databases, program SQL, or "be an administrator". All I need to know about
is how to go into the raw data like I did in Access and change that data.

(The front-end software has some limitations, and I have found it easier in
the past to go into the dB through Access and search-and-replace, and
generally edit the data as though I was in Excel).

What is the easiest and quickest way to learn the skills I need for doing
the same thing under SQL Server 2000?

Is there a particular book or site that you could recommend?

Is there in fact a tool in existence that mimics Excel in the editing of SQL
data??
Jul 23 '05 #1
7 1289
Hi James,

For simplicity MS access will give you the easest way to view/modify
the data, it is normal in installations of the type you have that you
have the MSDE version of SQL server, if this is the case then there are
no user tools out of the box to help you with viewing/editing data.

There are some 'free' tools out there but in a lot of cases you will
spend a lot of time trying to learn these tools, you can use excel to
view and modify your databases but this harder than access to do, and
it does not view the data in quite the same way as access would.

Good luck

Alex

Jul 23 '05 #2
You can use Enterprise Manager, which is a client tool that comes with
SQL Server, or you can just use Access as a front end to connect to the
SQL Server database. Do some google searching and you should find
plenty of tutorials/explanations.

Jul 23 '05 #3

"James R" <x@y.com> wrote in message news:42********@quokka.wn.com.au...
I am a retailer whose software back-end has just been upgraded from Access
to SQL Server 2000. (The front-end is an independently-written shop Point Of Sale system)

While I know a fair bit about computers, I know nothing about SQL Server.
And frankly, I don't want to know much. I don't need to build any new
databases, program SQL, or "be an administrator". All I need to know about
is how to go into the raw data like I did in Access and change that data.
Unfortunately you'll have to become somewhat of an administrator. You
should at the very least understand the backup model of SQL Server, ensure
you're making backups and even more so, make sure you can restore them.

(The front-end software has some limitations, and I have found it easier in the past to go into the dB through Access and search-and-replace, and
generally edit the data as though I was in Excel).

What is the easiest and quickest way to learn the skills I need for doing
the same thing under SQL Server 2000?
Well, if you understand the SQL language, then, Query Analyzer is ultimately
your best bet.

If not, you can look into using Access as a front end tool to SQL 2000.

Is there a particular book or site that you could recommend?

Is there in fact a tool in existence that mimics Excel in the editing of SQL data??
Probably, but I' not sure I'd trust it.:-)

Jul 23 '05 #4
Hi

No one has seemed to mention Books Online which is an invaluable resource
that comes with SQL Server. The latest version is downloadable at
http://www.microsoft.com/sql/techinf...2000/books.asp

These links may also be useful:
http://www.aspfaq.com/show.asp?id=2423

If you have MSDE then you will not have Enterprise Manager a list of
alternative tools to administer
SQL Server can be found at http://www.aspfaq.com/show.asp?id=2442

John

"James R" <x@y.com> wrote in message news:42********@quokka.wn.com.au...
I am a retailer whose software back-end has just been upgraded from Access
to SQL Server 2000. (The front-end is an independently-written shop Point
Of
Sale system)

While I know a fair bit about computers, I know nothing about SQL Server.
And frankly, I don't want to know much. I don't need to build any new
databases, program SQL, or "be an administrator". All I need to know about
is how to go into the raw data like I did in Access and change that data.

(The front-end software has some limitations, and I have found it easier
in
the past to go into the dB through Access and search-and-replace, and
generally edit the data as though I was in Excel).

What is the easiest and quickest way to learn the skills I need for doing
the same thing under SQL Server 2000?

Is there a particular book or site that you could recommend?

Is there in fact a tool in existence that mimics Excel in the editing of
SQL
data??


Jul 23 '05 #5
On 17 Apr 2005 07:21:55 -0700, pb648174 wrote:
You can use Enterprise Manager, which is a client tool that comes with
SQL Server, or you can just use Access as a front end to connect to the
SQL Server database. Do some google searching and you should find
plenty of tutorials/explanations.


Hi pb648174,

I don't think using Enterprise Manager is a good recommendation. Though
it does permit data entry in tables, it is actually not intended to be
used for that - and frankly, it shows. There are many issues with using
EM as data entry tool. Too many to be able to rely on it.

Some examples include:
* EM uses a different "default date" than the SQL Server engine. To use
a datetime to store just the time, SQL Server expects you to use the
default date part of Jan 1, 1900. But if you enter just a time part in a
datetime column in EM, the date part used will be Dec. 31, 1899. If you
also enter "time-only" datetime data from other source, all comparisons
will fail.
* When updating a view, EM sometimes uses the source of the view to do a
direct update to the underlying base tables instead. This will bypass
any triggers declared to execute on updates to the view. I didn't test
it, but it might even bypass security checks.

Some other weaknesses of EM, and some of it's strengths (for it is
actually rather good at the job it is designed for - which is to manage
the SQL Servers in an enterprise) are documented at
http://www.aspfaq.com/show.asp?id=2455

Best, Hugo
--

(Remove _NO_ and _SPAM_ to get my e-mail address)
Jul 23 '05 #6
To follow up here BOL is a great tool. The section 'How To' is a good place
to start. However, the problem with BOL is knowing the question to ask.

A down and dirty start is SQL Server Step by Step. This is real basic and
focuses on using Enterprise Manager mainly. Very little if any TransAct
involved here.

However, to get into the raw data, you can still use MS Access. My creating
a MS Access Project, you can connect to the SQL database and view various
objects such as tables, views, stored procedures, etc. You can also create
whatever front end using forms and reports in order to manipulate and
retrieve information in a quick fashion.
Akinja
"John Bell" <jb************@hotmail.com> wrote in message
news:42***********************@news.zen.co.uk...
Hi

No one has seemed to mention Books Online which is an invaluable resource
that comes with SQL Server. The latest version is downloadable at
http://www.microsoft.com/sql/techinf...2000/books.asp

These links may also be useful:
http://www.aspfaq.com/show.asp?id=2423

If you have MSDE then you will not have Enterprise Manager a list of
alternative tools to administer
SQL Server can be found at http://www.aspfaq.com/show.asp?id=2442

John

"James R" <x@y.com> wrote in message news:42********@quokka.wn.com.au...
I am a retailer whose software back-end has just been upgraded from Access
to SQL Server 2000. (The front-end is an independently-written shop Point
Of
Sale system)

While I know a fair bit about computers, I know nothing about SQL Server.
And frankly, I don't want to know much. I don't need to build any new
databases, program SQL, or "be an administrator". All I need to know
about
is how to go into the raw data like I did in Access and change that data.

(The front-end software has some limitations, and I have found it easier
in
the past to go into the dB through Access and search-and-replace, and
generally edit the data as though I was in Excel).

What is the easiest and quickest way to learn the skills I need for doing
the same thing under SQL Server 2000?

Is there a particular book or site that you could recommend?

Is there in fact a tool in existence that mimics Excel in the editing of
SQL
data??


Jul 23 '05 #7
"James R" <x@y.com> wrote in message news:<42********@quokka.wn.com.au>...
I am a retailer whose software back-end has just been upgraded from Access
to SQL Server 2000. (The front-end is an independently-written shop Point Of
Sale system)

While I know a fair bit about computers, I know nothing about SQL Server.
And frankly, I don't want to know much. I don't need to build any new
databases, program SQL, or "be an administrator". All I need to know about
is how to go into the raw data like I did in Access and change that data.

(The front-end software has some limitations, and I have found it easier in
the past to go into the dB through Access and search-and-replace, and
generally edit the data as though I was in Excel).

What is the easiest and quickest way to learn the skills I need for doing
the same thing under SQL Server 2000?

Is there a particular book or site that you could recommend?

Is there in fact a tool in existence that mimics Excel in the editing of SQL
data??


Hello James;

I'm not a computer guru just an 'educated user' and part time amateur
developer. As I see it you still want to proceed as you did before
with Access to modify data on the SQL Server. This is possible and
simple. All you have to do is link to the tables from within Access.
They will then be manipulated exactly as you did before but they will
be stored on the SQL Server. The real trick here is to use and ODBC
connection to the table. You can either create a Data Set Name
directly or use the wizards provided by Access. The first step is to
try to link to the table you will need to specify that the "File of
type" is an ODBC database which requires you scroll to the bottom of
the "File of type" pull down list to find it on the Link conversation
box. It will then work you through the process to create a DSN and
you will then be able to link to and manipulate the tables through
Access as you did before.

However, I'm not certain whether you have someone looking after your
back end database. If not, then the warnings offered elsewhere in
previous replies are critical. You must learn to protect your data
and do backups and be able to restores your data. If this is your
total responsibility you better get started because it could cost you
everything if the data is critical to your business.

Cheers;

Bill
Jul 23 '05 #8

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

Similar topics

4
by: Harag | last post by:
Hi all. I'm thinking about learning ASP.NET. I currently have: Windows 2000 Pro Dreamweaver MX 2004 IE 6
6
by: Member | last post by:
Hi group. I have been working with ColdFusion and SQL Server for some time now....abour 4 years I guess. I have developed various web applications successfully. The scenario I am in is that a...
2
by: Jay Chan | last post by:
We have just installed a SQL Server 2000 (SP 3A) onto a computer that has Windows-2003 Server on it. Now, we cannot get access to that database server from other computers. Seem like this may be an...
3
by: Harag | last post by:
Hi all. I'm thinking about learning ASP.NET. I currently have: Windows 2000 Pro Dreamweaver MX 2004 IE 6
6
by: kneejerkreaction | last post by:
I'm seeking advice on learning .NET I have experience in ASP, HTML, Vb, Vbscript and Javascript but want to learn .NET I also have some experience with SQL Server and Oracle databases. My...
5
by: Chuck Bowling | last post by:
From the walkthroughs I'm starting to get the impression that the only way I'm going to be able to learn about ADO.NET is to go out and buy SQL Server 7.0. I already own MS Access and don't have...
14
by: Developer | last post by:
Hello All, i have recently installed VS2005 and was trying to install SQL sever 2000. I have Win XP' SP2. But when I tried installing, it only installed client tools and not the database. Can...
12
by: raj_pattel | last post by:
Exuse me for asking, I am loking for best book to learn VB.NET language / framework. I learn C before but many years ago. Do anyone know good book, but not too much beginner one. Sory for my...
2
by: lmaurer | last post by:
Hi all, I have been charged with learning how to create web pages that will function as data capturing tools. From the research I have done, it looks like I need to learn ASP.net and SQL Server...
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
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.