Showing posts with label business. Show all posts
Showing posts with label business. Show all posts

Monday, March 26, 2012

MSDE 2000 on XP help...

Hello all, im new here and do not have no experience with sql. I am trying to install a tax software that I need to run my little business. When I install it gets to a popint that it asks me for my SQL server usernme and password. I remember doing this last year and I reinstalled MSDE and set up a username and password. I seem to not remember what I used, i tried all that I would have but can not get past that step.

I remember adding some lines in the setup,ini file when I installed it last year. Now I can go ahead and reinstall it again and set up a new one, but will the uninstalling and reinstalling of MSDE affect my previous software from last year? Its the same software but I need this years installed.

I have tried using sa as the username and a blank password, with a password and others that I have read up on, still cant log on. Keep getting worng credential screen.

Is there a way to get that info, i doubt it or else it would not be secure, or can I just simply reinstall MSDE?

Many thanks!!

Forget MSDE. Use Sql Server Express instead. It's much easier:http://www.microsoft.com/sql/editions/express/default.mspx

|||

If you are going to uninstall and reinstall it again, you will be loosing all the data that is there from the previous year. So if you are ok with that , you can go ahead and reinstall it.

Also, since you are using a application, the application needs to store the access details some where, may be in registry or INI or something like that, so check for that or ask the maker of the software to send you the details about where the Server details are stored by the application. Then, you can open them up and find the details.

|||

Yeah thats the thing, I don't want to loose the data. OK, so I will talk to them and see what they can help me with. Thanks.

|||

Well don't know anything about sql, msde, all i know is that the program asks for the login credentials when its installing, other than that, I don't mess with MSDE.

sql

Monday, March 12, 2012

MSDE & Business Contact Manager

I have a computer (XP PRO) that I attempted to install MSDE on for a database
application we use, not realizing that the Outlook Business Contact Manager
has some sort of SQL server already installed. The installation failed. In
looking through the services I noticed the MicrosoftBCM instance and realized
that must be my problem.
I attempted to connect to this instance via odbc and not knowing the
connection method was unable to connect (server does not exist or access
denied...) but the computer name and (local) were listed in the SQL servers
list.
So I installed a new instance of MSDE SP3. The installation went fine. The
new instance appeared in the services. I started the new service and
everything looked OK, but in trying to connect via ODBC, now SQL servers list
was empty and typing in the computer name did not help.
I restarted the computer and had the same symptoms. I started the SQL server
agent and none of the services were listed here either.
I looked in the reg key HKLM\SOFTWARE\MICROSOFT\Microsoft SQL
Server\InstalledInstances, and both were listed there.
The services were started and there were not any errors in the event log.
I uninstalled and re-installed MSDE, but that did not help either. So I
uninstalled the Business contact manager, since we were not yet using it and
the MSDE, then reinstalled MSDE and that is now working just fine with the
database application.
Does anyone have any idea what my problem may have been, if I am just unable
to have the Business contact manager and MSDE on the same comptuer or if
there is a fix or workaround for the problem I am experiencing?
Thanks so much,
ST
hi,
ST wrote:
> I have a computer (XP PRO) that I attempted to install MSDE on for a
> database application we use, not realizing that the Outlook Business
> Contact Manager has some sort of SQL server already installed. The
> installation failed. In looking through the services I noticed the
> MicrosoftBCM instance and realized that must be my problem.
> I attempted to connect to this instance via odbc and not knowing the
> connection method was unable to connect (server does not exist or
> access denied...) but the computer name and (local) were listed in
> the SQL servers list.
> So I installed a new instance of MSDE SP3. The installation went
> fine. The new instance appeared in the services. I started the new
> service and everything looked OK, but in trying to connect via ODBC,
> now SQL servers list was empty and typing in the computer name did
> not help.
> I restarted the computer and had the same symptoms. I started the SQL
> server agent and none of the services were listed here either.
> I looked in the reg key HKLM\SOFTWARE\MICROSOFT\Microsoft SQL
> Server\InstalledInstances, and both were listed there.
> The services were started and there were not any errors in the event
> log.
> I uninstalled and re-installed MSDE, but that did not help either. So
> I uninstalled the Business contact manager, since we were not yet
> using it and the MSDE, then reinstalled MSDE and that is now working
> just fine with the database application.
> Does anyone have any idea what my problem may have been, if I am just
> unable to have the Business contact manager and MSDE on the same
> comptuer or if there is a fix or workaround for the problem I am
> experiencing?
> Thanks so much,
> ST
I do not know about Outlook Business Contact Manager, but as regard the
empty SQL Server list in the SQL Server Service Manager, it probably depends
on network protocols setting for the installed MSDE instance, as reported in
http://support.microsoft.com/default...b;EN-US;814132
to modify this behaviour, run the Server Network Utility (svrnetcn.exe) and
enable the desired networkprotocol, if this is a viable solution..
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz/DbaMgr.shtmhttp://italy.mvps.org
DbaMgr2k ver 0.10.0 - DbaMgr ver 0.56.0
(my vb6+sql-dmo little try to provide MS MSDE 1.0 and MSDE 2000 a visual
interface)
-- remove DMO to reply

Friday, March 9, 2012

MSDE - list databases, describe tables, migrate from Access?

I am new to SQL Server but have been using Access for a while. I just
installed MSDE (latest version) to evaluate it for use in small business
systems rather than Access peer-to-peer. Just a few quick questions:
1) I can connect to MSDE from an Access db by linking, but I think I am
doing this through ODBC (using the link table wizard in Access). Is this
the correct way?
2) In goofing around I used 'osql' to do a bunch of create table and insert
statements to create some test data but I didn't save these statements. Now
I can't see how to get the list of databases, tables, and columns that I
created. Is there anything like 'show databases', 'show tables', or
'describe <tablename>' that will output a description of what I've created?
3) Is there any simple way to take a database created in MS-Access and
convert it to SQL Server format? I.e. can I create my tables in Access's
nice user interface and then move them over to MSDE?
Thanks,
Doug MHi,
1. You are in the right tract if you are using MSAccess .
2. Go into SQL prompt using
OSQL -Usa -Ppassword -S serve_name (Enter Key)
-- To display list of databases
1>sp_databases (enter)
2>go (enter)
-- To list the tables in a database
1>use dbname (enter)
2>go (enter)
1>sp_tables (enter)
2>go (enter)
-- To see the table structure
1>use dbname (enter)
2>go (enter)
1>sp_help table_name (enter)
2>go (enter)
This list goes on and on... See books online for moredetails on the SQL
Server TSQL commands.
3. Use can use DTS , but DTS wont be coming with MSDE. Other approaches
are manual.
a. Create the table in MSDE manually
b. Generate the comm seperated text from MSACCESS for each table
c. Use BCP IN or BULK INSERT utility in sql server MSDE to load into
tables.
Thanks
Hari
MCDBA
"user" <user@.nowhere.com> wrote in message
news:40d50f01$0$18672$afc38c87@.news.optusnet.com.au...
> I am new to SQL Server but have been using Access for a while. I just
> installed MSDE (latest version) to evaluate it for use in small business
> systems rather than Access peer-to-peer. Just a few quick questions:
> 1) I can connect to MSDE from an Access db by linking, but I think I am
> doing this through ODBC (using the link table wizard in Access). Is this
> the correct way?
> 2) In goofing around I used 'osql' to do a bunch of create table and
insert
> statements to create some test data but I didn't save these statements.
Now
> I can't see how to get the list of databases, tables, and columns that I
> created. Is there anything like 'show databases', 'show tables', or
> 'describe <tablename>' that will output a description of what I've
created?
> 3) Is there any simple way to take a database created in MS-Access and
> convert it to SQL Server format? I.e. can I create my tables in Access's
> nice user interface and then move them over to MSDE?
> Thanks,
> Doug M
>|||That's great, thanks.
Doug M
"Hari Prasad" <hari_prasad_k@.hotmail.com> wrote in message
news:OxwcvkqVEHA.3596@.tk2msftngp13.phx.gbl...
> Hi,
> 1. You are in the right tract if you are using MSAccess .
> 2. Go into SQL prompt using
> OSQL -Usa -Ppassword -S serve_name (Enter Key)
> -- To display list of databases
> 1>sp_databases (enter)
> 2>go (enter)
> -- To list the tables in a database
> 1>use dbname (enter)
> 2>go (enter)
> 1>sp_tables (enter)
> 2>go (enter)
> -- To see the table structure
> 1>use dbname (enter)
> 2>go (enter)
> 1>sp_help table_name (enter)
> 2>go (enter)
>
> This list goes on and on... See books online for moredetails on the SQL
> Server TSQL commands.
>
> 3. Use can use DTS , but DTS wont be coming with MSDE. Other approaches
> are manual.
> a. Create the table in MSDE manually
> b. Generate the comm seperated text from MSACCESS for each table
> c. Use BCP IN or BULK INSERT utility in sql server MSDE to load into
> tables.
> Thanks
> Hari
> MCDBA
>
> "user" <user@.nowhere.com> wrote in message
> news:40d50f01$0$18672$afc38c87@.news.optusnet.com.au...
> > I am new to SQL Server but have been using Access for a while. I
just
> > installed MSDE (latest version) to evaluate it for use in small business
> > systems rather than Access peer-to-peer. Just a few quick questions:
> >
> > 1) I can connect to MSDE from an Access db by linking, but I think I am
> > doing this through ODBC (using the link table wizard in Access). Is
this
> > the correct way?
> >
> > 2) In goofing around I used 'osql' to do a bunch of create table and
> insert
> > statements to create some test data but I didn't save these statements.
> Now
> > I can't see how to get the list of databases, tables, and columns that I
> > created. Is there anything like 'show databases', 'show tables', or
> > 'describe <tablename>' that will output a description of what I've
> created?
> >
> > 3) Is there any simple way to take a database created in MS-Access and
> > convert it to SQL Server format? I.e. can I create my tables in
Access's
> > nice user interface and then move them over to MSDE?
> >
> > Thanks,
> >
> > Doug M
> >
> >
>|||Ben Forta's book "SQL in 10 Minutes" is a most valuable desk-side
reference and I've recently also come to learn the same can be said
of his most recent work "Regular Expressions in 10 Minutes."
Highly recommended and each costs less than a large pepperoni pizza ;-)
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@. REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
"user" <user@.nowhere.com> wrote in message
news:40d5fa03$0$18671$afc38c87@.news.optusnet.com.au...
> That's great, thanks.
> Doug M
> "Hari Prasad" <hari_prasad_k@.hotmail.com> wrote in message
> news:OxwcvkqVEHA.3596@.tk2msftngp13.phx.gbl...
> > Hi,
> >
> > 1. You are in the right tract if you are using MSAccess .
> >
> > 2. Go into SQL prompt using
> >
> > OSQL -Usa -Ppassword -S serve_name (Enter Key)
> >
> > -- To display list of databases
> >
> > 1>sp_databases (enter)
> > 2>go (enter)
> >
> > -- To list the tables in a database
> >
> > 1>use dbname (enter)
> > 2>go (enter)
> > 1>sp_tables (enter)
> > 2>go (enter)
> >
> > -- To see the table structure
> >
> > 1>use dbname (enter)
> > 2>go (enter)
> > 1>sp_help table_name (enter)
> > 2>go (enter)
> >
> >
> >
> > This list goes on and on... See books online for moredetails on the SQL
> > Server TSQL commands.
> >
> >
> >
> > 3. Use can use DTS , but DTS wont be coming with MSDE. Other approaches
> > are manual.
> >
> > a. Create the table in MSDE manually
> > b. Generate the comm seperated text from MSACCESS for each table
> > c. Use BCP IN or BULK INSERT utility in sql server MSDE to load into
> > tables.
> >
> > Thanks
> > Hari
> > MCDBA
> >
> >
> > "user" <user@.nowhere.com> wrote in message
> > news:40d50f01$0$18672$afc38c87@.news.optusnet.com.au...
> > > I am new to SQL Server but have been using Access for a while. I
> just
> > > installed MSDE (latest version) to evaluate it for use in small business
> > > systems rather than Access peer-to-peer. Just a few quick questions:
> > >
> > > 1) I can connect to MSDE from an Access db by linking, but I think I am
> > > doing this through ODBC (using the link table wizard in Access). Is
> this
> > > the correct way?
> > >
> > > 2) In goofing around I used 'osql' to do a bunch of create table and
> > insert
> > > statements to create some test data but I didn't save these statements.
> > Now
> > > I can't see how to get the list of databases, tables, and columns that I
> > > created. Is there anything like 'show databases', 'show tables', or
> > > 'describe <tablename>' that will output a description of what I've
> > created?
> > >
> > > 3) Is there any simple way to take a database created in MS-Access and
> > > convert it to SQL Server format? I.e. can I create my tables in
> Access's
> > > nice user interface and then move them over to MSDE?
> > >
> > > Thanks,
> > >
> > > Doug M
> > >
> > >
> >
> >
>