h iEddie,
> I have SQL express completely uninstalled,but in services i still
> have it showing once instance. If i try to start it it says the file
> not found, and the aritlce i read below im not sure if that is what i
> need to be able to get that out of thee service list.
if you only have the service registered, but no binaries are present (really
a mess), you can try manually "deleting" the registry entry..
http://www.google.it/search?hl=it&q=manually+remove+service&meta=
> I cant reinstall this application because the sql express install
> fails out (it doesnt give it a chance to create the database im
> guessing because there is one of the same name listed in the services
> under control panel )..
you can eventually assign a different instance name for the one you want to
install..
> I also hae MDSE installed for blackberry and another program. I tried
> to create another instance there, the databsae was created and when i
> specify it in the setup it says the SA account is not trusted or
> someting like that?
please notice that a SQL Server instance and a SQL Server database are very
different things..
an instance [you can install up to 16 of them on the same machine, but each
of them will consume resources, so you should be cautios :) ] is made of
"binaries", thus is represented by executable files and a set of related
databases, both system databases and user's databases... different instances
can be at different version and service pack levels..
on the other side, a database is "just data" (loosely speaking), and it has
to be registered (via sp_attach_db) to a specific instance in order to be
used...
this should mean you tried to install an additional instance of MSDE or
what? this has nothing to do with "the database was created" statement and
with "when I specify IT in the setup.." as you can not specify a database
name at MSDE/SQL Server install time... at install time you can specify an
instance name via the INSTANCENAME=whatever parameter.. so the "SA account
is not trusted or something like that" exception should be related at
connection time and not at install time.. by default MSDE installs allowing
only trusted connections, and you have to manually enable mixed mode
connections at install time, providing the SECURITYMODE=SQL additional
parameter, or later, modifying that setting "hacking" the windows registry
as indicated in
http://support.microsoft.com/default.aspx?scid=kb;en-us;285097 ..

Signature
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz http://www.hotelsole.com
DbaMgr2k ver 0.21.1 - DbaMgr ver 0.65.1 and further SQL Tools
--------- remove DMO to reply