Showing posts with label msde. Show all posts
Showing posts with label msde. Show all posts

Tuesday, March 27, 2012

Failed to manage image field

In my simple table in MSDE 2000A, I have an image field. I have enabled 'text in row' using the stored procedure 'sp_tableoption'.

How do I get jpeg images in the table, and how do I read them?

Now, I ask a naive question. Has anybody ever captured an image from the file system, and saved it in SQL 2000 (or MSDE 2000A, which I am using for development)?

If you don't save image direct to database, how do you manage yor images stored seperate from the database (i.e on the filesystem)

For the last two days, I have searched the net and I regret to say I am not making any headway. Lots of stuff on the net have not been very useful.

Please help. How did you do yours? If it matters, I am using VB .NET 2003 front-end. Let me know whatever method you used.

I am desperate.

|||

Finally done!

I used the MemoryStream conversion to Byte then saved to table. To retrieve, I used the converse.

Failed to install MSDE 2000a

I have been tring to install the MSDE 200Aon my marchine that is using
the command prompt.
this is the command that i was using:
(setup INSTANCENAME="SA" SECURITYMODE=SQL SAPWD="SqlAdmin1"
TARGETDIR="C:\" )
but it gave me the following error message;
(Go to the control panel to install and configure system components)
now i really dont know what to do from here can you advice me?
hi Tino,
Tino wrote:
> I have been tring to install the MSDE 200Aon my marchine that is using
> the command prompt.
> this is the command that i was using:
> (setup INSTANCENAME="SA" SECURITYMODE=SQL SAPWD="SqlAdmin1"
> TARGETDIR="C:\" )
> but it gave me the following error message;
> (Go to the control panel to install and configure system components)
> now i really dont know what to do from here can you advice me?
did you navigate and posittioned your command prompt window in the folder
hosting the setup.exe boostrap installer of MSDE?
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.bizhttp://italy.mvps.org
DbaMgr2k ver 0.20.0 - DbaMgr ver 0.64.0 and further SQL Tools
-- remove DMO to reply
sql

Wednesday, March 21, 2012

Failed to connect to server - Need expert advise

Hello All,
We use MSDE SP3a and are having a strange problem.
We have an ADO-based application that fails depending on the domain
that we use to login to the machine. It works if I login to DOMAIN_A
but it fails to connect to the server if I am physically logged in into
the DOMAIN_B. In both cases the server and the database is local. The
message that I get is the usual:
Error Number: 80004005 [DBNETLIB][ConnectionOpen (Connect()).]SQL
Server does not exist or access denied.
I could not find any other errors in the event viewer, logs, etc.
Any help or ideas would be deeply appreciated as I ran out of them...
Thanks
- CD
How are you connecting ot the server Windows Authentication or SQL
Server Authentication ?
-Jens Suessmeyer.

Failed to connect to server - Need expert advise

Hello All,
We use MSDE SP3a and are having a strange problem.
We have an ADO-based application that fails depending on the domain
that we use to login to the machine. It works if I login to DOMAIN_A
but it fails to connect to the server if I am physically logged in into
the DOMAIN_B. In both cases the server and the database is local. The
message that I get is the usual:
Error Number: 80004005 [DBNETLIB][ConnectionOpen (Connect()).]SQL
Server does not exist or access denied.
I could not find any other errors in the event viewer, logs, etc.
Any help or ideas would be deeply appreciated as I ran out of them...
Thanks
- CDHow are you connecting ot the server Windows Authentication or SQL
Server Authentication ?
-Jens Suessmeyer.sql

Monday, March 19, 2012

Failed MSDE installation - Feedback on posting by Jason Howell

Hi Jason, Hi all,
I have been having an error installing MSDE and discovered a thread in this
newsgroup, which appears to handle the same error.
Specifically, the post http://tinyurl.com/2vtzv by Jason Howell seemed
relevant.
Interestingly, setting BLANKSAPWD=1 did get the installation to complete,
but I was still not able to start the service. This did not really help me.
Now I believe that I have more information , which may be interesting to
others.
The problem appears to be related to the facts that,
- I have the SQL Server 2000 Enterprise Edition client tools installed on my
machine
- I have already installed and deinstalled an MSDE instance with the same
instance name (CS3DB).
I have managed to install a second instance of MSDE using a different
instance name (CS3DBTEST) and this works perfectly.
The problem is clearly related to the instance name CS3DB.
However, although I had unistalled the CS3DB instance, various entries were
left in the registry. These were:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server
InstalledInstances=CS3DB CS3DBTEST
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\Component Set
InstanceComponentSet.1={E09B48B5-E141-427A-AB0C-D3605127224A}
InstanceComponentSet.2={689404D2-1C94-44B3-9203-BEC5594FDA7A}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\CS3DB
...
which all indicate to me that the CS3DB instance had not been removed
properly, and that in some manner or other, there were still two versions
installed. However, the CS3DB instance no longer appeared in the Add/Remove
programs dialog in the control panel.
My suspision is, that is you have the SQL Server 2000 client tools installed
before you install MSDE, then you cannot cleanly remove the first instance
of MSDE.
I have now modified the registry, by:
removing CS3DB from
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL
Server\InstalledInstances
deleting
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\Component Set
InstanceComponentSet.1={E09B48B5-E141-427A-AB0C-D3605127224A}
deleting the related key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Uninstall\{E09B
48B5-E141-427A-AB0C-D3605127224A}
and deleting the key and subkeys
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\CS3DB
This seems to have down the trick.
I have now reinstalled the MSDE instance CS3DB and it seems to be working.
So again, my guess is that uninstalling MSDE in the presence of the SQL
client tools does not work properly.
Hope this helps somebody and any feedback would be appreciated.
Phil
Hi,
I have now repeated this, as follows:
- uninstall instance CS3DB
- try to reinstall - it fails
- remove registry entries as described before
- try to reinstall - it works.
Phil
|||"Phil Jollans" <nospam@.messring.de> wrote in message
news:2kg1ioF1qnrpU1@.uni-berlin.de...
> Hi,
> I have now repeated this, as follows:
> - uninstall instance CS3DB
> - try to reinstall - it fails
> - remove registry entries as described before
> - try to reinstall - it works.
> Phil
>
This may not be big news to others, but it's a valuable piece of information
to me, as we use MSDE in our labs and classrooms, and many of our students
use it at home in conjunction with Visual Studio .NET. (Next time I have a
student who is having MSDE trouble, I now have one more question/possible
solution to use).
Thanks very much for sharing! It's what makes these groups so valuable.
Peter [MVP Visual Developer]
Jack of all trades, master of none.

Failed Install of MSDE

Hi, folks.

I have been trying to install sql2kdesksp3 and am running into some problems. The initial install seems to go okay, even up to the point of issuing the Setup sapwd=password command-line command. However, when I try to install sql2kasp3 or sql2ksp3, a message appears saying that SQL 2000 is not installed.

I am on a XPPro SP1 desktop, with IIS 5.1 and .NET 1.1 Framework installed. Can anybody point me in the right direction to get MSDE installed?

TIA,

BobAny help on installing SQL Server Desktop Engine?|||You are using the SQL Server service pack update to install MSDE? Try downloading MSDE alone and try again. Here is the link to the MSDE download:

http://www.microsoft.com/sql/msde/downloads/dowload.asp|||Hi, Phish.

I need help getting to the SQL prompt.

I downloaded and installed the latest MSDE. The Service Manager is now running...and after a few hours of poking around I figured out my server name by looking in the log files. LOL So, it's running and the three services are available, with SQL Server as the default.

Now, I am having problems launching OSQL and I think it has something to do with the username. I do remember part of the install process where I was asked to supply a password. I am using that password in this situation. I tried the following, where "administrator" is the local workstation's administrator account. For kicks, I tried "sa" as a username. No luck. Here's the output:

D:\Temp>osql -U administrator
Password:
[Shared Memory]SQL Server does not exist or access denied.
[Shared Memory]ConnectionOpen (Connect()).

D:\Temp>osql -U sa
Password:
[Shared Memory]SQL Server does not exist or access denied.
[Shared Memory]ConnectionOpen (Connect()).

D:\Temp
Where do I go from here so I can start playing with MSDE?

TIA,

Bob|||You might have authentication twisted up. I also ran into that problem when attempting to connect thru OSQL. Take a look at this article:

http://support.microsoft.com/default.aspx?scid=kb;en-us;322336#4

This will help you determine and show you how to change your authentication mode. When i reset the registry value to 2 for LoginMode I don't experience any problems. Hope this helps.

- Jesse Williams

failed install

hi all
im instaling msde 2000 in XP PRO SP2, but when is end install, rolled back
and not install
without any message error...
anybody now anything about this...
tanks
Edson
hi Edson,
Edson wrote:
> hi all
> im instaling msde 2000 in XP PRO SP2, but when is end install, rolled
> back and not install
> without any message error...
> anybody now anything about this...
please add the
/L*v "c:\MsdeLog.txt"
parameter to your call to setup.exe boostrap installer... this will enable
verbose logging of the installation process, resulting in an (about) 2mb
text file (for a succesfull installation) syou can inspect for
RETURN VALUE 3
entries indcating problems... about 10/15 lines before each entry some
(sometime) cryptic description of the problem will be reported...
anyway, before re-installing, please verify File and Printer sharing is
enabled, as long as the Server service up and running..
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

Friday, March 9, 2012

Fail to hide the restart dialog after installed MSDE

Hi,
I want to hide the restart dialog after installed MSDE. I
use the follow command:
setup /settings "setup.ini" /qb
But, the result fails. The restart dialog is also
prompted. Is my command wrong? How to do it?
Thanks.
Using /qn instead of /qb did the trick for me. Do you only get the restart
dialog, or do you get other dialogs as well? I ran mine without a settings
file, just with all the parameters on the command prompt.
Jacco Schalkwijk
SQL Server MVP
<anonymous@.discussions.microsoft.com> wrote in message
news:1311101c41243$45fd3f30$a501280a@.phx.gbl...
> Hi,
> I want to hide the restart dialog after installed MSDE. I
> use the follow command:
> setup /settings "setup.ini" /qb
> But, the result fails. The restart dialog is also
> prompted. Is my command wrong? How to do it?
> Thanks.
|||A solution I saw on another newsgroup was to include the following switch:
REBOOTPROMPT=Suppress
(I haven't had chance to try it yet)
Posted using Wimdows.net NntpNews Component -
Post Made from http://www.SqlJunkies.com/newsgroups Our newsgroup engine supports Post Alerts, Ratings, and Searching.

Sunday, February 26, 2012

facing problem in running msde

hi all,
i down loaded masde 2000 release A on windows 2000 profesioanl.i installed
successfully. but i dont know how to run it. Actually one forlder is created.
inside that "Binn","data",some other files are there. but there is no thing
else.In, programm files no new tool is created.
do i have to down load anything more to run msde.
pls help me .
thanks,
vinoth
hi vinoth,
vinoth wrote:
> hi all,
> i down loaded masde 2000 release A on windows 2000 profesioanl.i
> installed successfully. but i dont know how to run it. Actually one
> forlder is created. inside that "Binn","data",some other files are
> there. but there is no thing else.In, programm files no new tool is
> created.
> do i have to down load anything more to run msde.
> pls help me .
> thanks,
> vinoth
please see my answer to your follow-up in [Re: Install MSDE on XP Home Ed.
Unable connect DB from other PC] thread
thank you
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 ,
thanks Montanari.
but still i have problem.
i downoaded a gui tool . when i try to connect to the server .it says no
server exists.
i gave MSSQLSERVER as instance name. SAPWD= "sa"
in cpntrol panel-> services MSSQLSERVER is running.
pls guide me.
thanks,
vinoth
"Andrea Montanari" wrote:

> hi vinoth,
> vinoth wrote:
> please see my answer to your follow-up in [Re: Install MSDE on XP Home Ed.
> Unable connect DB from other PC] thread
> thank you
> --
> 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,
vinoth wrote:
> hi ,
> thanks Montanari.
> but still i have problem.
> i downoaded a gui tool . when i try to connect to the server .it says
> no server exists.
> i gave MSSQLSERVER as instance name. SAPWD= "sa"
> in cpntrol panel-> services MSSQLSERVER is running.
>
at connection time you have to provide the full name of the MSDE instance...
if it is a default instance you only need to specify the ServerName (or
(Local) for local connections) where, for named instances, the full name is
composed by ServerName\InstanceName (or (Local)\InstanceName for a local
named instance)
please check in control panel->management tools->services applet what your
instance name is...
if you only find an entry like
MSSQLSERVER
this is a default instance...
if your see something like
MSSQLSERVER$some_name
this will be a named instance... so you'll have to connect providing
ComputerName\some_instance
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 thank u
very much.
u r so help ful.
thanks
vinoth
"Andrea Montanari" wrote:

> hi,
> vinoth wrote:
> at connection time you have to provide the full name of the MSDE instance...
> if it is a default instance you only need to specify the ServerName (or
> (Local) for local connections) where, for named instances, the full name is
> composed by ServerName\InstanceName (or (Local)\InstanceName for a local
> named instance)
> please check in control panel->management tools->services applet what your
> instance name is...
> if you only find an entry like
> MSSQLSERVER
> this is a default instance...
> if your see something like
> MSSQLSERVER$some_name
> this will be a named instance... so you'll have to connect providing
> ComputerName\some_instance
> --
> 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
>
>