Hi,

I have the same problem. I always get:

ERROR String: Error 0011510 (TM/Fatal): Cannot connect to database "SAP
DBTech JDBC: Cannot connect to jdbc:sapdb://andromeda/TST [Cannot
connect to host andromeda [Connection refused: connect], {2}.]."

(first part of message from my application)

What does this {2} mean? Andromeda is the name of the sever. Using
SQLStudio access works fine.

BTW: The user and password mentioned in the db creation batch file
mentions: test / test. So which one is the correct one?

Is there somewhere a log file where I can check which jdbc commands have
been received by the database server?

Klemens

-----Urspr�ngliche Nachricht-----
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] Im Auftrag von
[EMAIL PROTECTED]
Gesendet: Mittwoch, 5. Februar 2003 11:45
An: [EMAIL PROTECTED]
Betreff: sapdb.general digest, Vol 1 #814 - 7 msgs


Send sapdb.general mailing list submissions to
        [EMAIL PROTECTED]

To subscribe or unsubscribe via the World Wide Web, visit
        http://listserv.sap.com/mailman/listinfo/sapdb.general
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific than
"Re: Contents of sapdb.general digest..."


Today's Topics:

   1. RE: Unable to connect ot sapdb7.4 using jdbc (Venkat)
   2. RE: Unable to connect ot sapdb7.4 using jdbc (Venkat)
   3. Re: TABLELOAD problem (Joerg P. Bertram)
   4. FW: TABLELOAD problem (Bumes, Hans-Georg)
   5. Alter Table Statement: -5015 Pos(241) Missing keyword:FROM
([EMAIL PROTECTED])
   6. UNIFACE and SAPDB
([EMAIL PROTECTED])
   7. =?UTF-8?B?bWF4IGtlcm5lbCB0YXNrcw==?=
(=?UTF-8?B?SG9sbGFuZCwgSm9obg==?=)

--__--__--

Message: 1
From: "Venkat" <[EMAIL PROTECTED]>
To: "SAP" <[EMAIL PROTECTED]>,
   "Brian C. Woodcox" <[EMAIL PROTECTED]>
Subject: RE: Unable to connect ot sapdb7.4 using jdbc
Date: Wed, 5 Feb 2003 11:57:44 +0530

Hi Brain,
Thanks for the correction.But i still facing the problem


Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST");

I tried even
Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST?user=TEST&passwo
rd=T
EST");
Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST?user=DBM&passwor
d=DB
M");
Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST?user=TEST&passwo
rd=T
EST&sqlmode=INTERNAL");

But no luck.

I check with sqlstudio and it is connection to TST. and all the services
are running.

Now error is
com.sap.dbtech.jdbc.exception.JDBCDriverException: SAP DBTech JDBC:
Cannot connecto to jdbc:sapdb://192.168.1.64/TST [Cannot connect to host
192.168.1.64 [connection refused: connect], [2].].

Where i went wrong.

Thanks in advance
venkat


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Brian C.
Woodcox
Sent: Wednesday, February 05, 2003 11:26 AM
To: SAP
Subject: RE: Unable to connect ot sapdb7.4 using jdbc


Hi Venkat,

The reason there is no "suitable driver", is because you still have an
error in your connection command.  Actually Marco gave you the correct
answer.

Please compare the following:

Connection con = DriverManager.getConnection
"jdbc:sapdb//localhost/TST","TEST","TEST");

Connection con = DriverManager.getConnection
"jdbc:sapdb://localhost/TST","TEST","TEST");

The second one is the correct one.  Notice the (:)colon after sapdb.

Brian.

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Venkat
Sent: Tuesday, February 04, 2003 10:08 PM
To: SAP
Subject: Unable to connect ot sapdb7.4 using jdbc


Hi all,
I downloaded the sapdbc.jar and pointed classpath to the jar file I am
able to compile the java file but unable to run it.


When i try to connect sapdb using java
I am geting execption java.sql.Exception : no suitable driver

I tried these options
Class.forName("com.sap.dbtech.jdbc.DriverSapDB");

Connection
con=DriverManager.getConnection("jdbc:sapdb//localhost/TST","TEST","TEST
");

Connection con=DriverManager.getConnection("jdbc:sapdb//localhost/TST");

insted of localhost i gave the ip

But no luck.

I checked the helloSapdb.java
Here the connection part.

          user = options.getProperty ("user");
        password = options.getProperty ("password");
        String url = "jdbc:sapdb://" + host + "/" + dbname;
        /*
         * load driver and connect
         */
        Class.forName ("com.sap.dbtech.jdbc.DriverSapDB");
        Connection connection = DriverManager.getConnection (url, user,
password);

Can some one help me where i went wrong.

Thanks in advance
regards
venkat

-----Original Message-----
From: Paskamp, Marco [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 04, 2003 5:55 PM
To: 'Venkat'; SAP
Subject: RE: New Bie--Unable to install


Hello,
your connect URL is wrong. The general layout is:
jdbc:sapdb://<host>/<database_name>. So, you should use the following
URL: "jdbc:sapdb://localhost/TST" Details about the connect URL, connect
options and a simple hello-JDBC-world programm can you find at:
http://www.sapdb.org/7.4/jdbcSapdbcEng.html

Regards,
Marco
----------------------------------------------
Marco PASKAMP
SAP DB, SAP Labs Berlin

> -----Original Message-----
> From: Venkat [mailto:[EMAIL PROTECTED]]
> Sent: Dienstag, 4. Februar 2003 13:15
> To: SAP
> Subject: RE: New Bie--Unable to install
>
>
> Hi all,
> I installed the sapdb and able to configure all the services. The 
> problem is i have to login as administrator.
>
> I am able to run all the services.
> I created a table login under TST database and  now i want to connect 
> using java.
> I downloaded the sapdbc.jar and pointed classpath to the jar file
> I am able to compile the java file but unable to run it.
>
> it is throwing exception : no suitable driver
>
> Here my connection
>
> Class.forName("com.sap.dbtech.jdbc.DriverSapDB");
> Connection 
> con=DriverManager.getConnection("jdbc:sapdb//localhost:85/TST"
> ,"TEST","TEST"
> );
>
>
> Do i need to download some driver for jdbc bridge?
> I created a dsn but no luck.
>
> Can some one help me the parameter to pass into
> DriverManager.getConnection();
>
> Thanks in advance.
>
> regards
> venkat
>
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Venkat
> Sent: Tuesday, February 04, 2003 3:26 PM
> To: SAP
> Subject: New Bie--Unable to install
>
>
> Hi all,
>
> I am new to sapdb and trying to install sapdb 7.4 
> (sapdb-all-win-32bit-i386-7_4_3_7).
>
> When i give the option profile id: 5 and giving all defalut values it 
> started installing and after some time window is closed.
>
> My environment is win 2000 with sp2.
>
> Can some one tell me what is happening?
>
> Thanks in advance
>
> regards
> venkat
>
> _______________________________________________
> sapdb.general mailing list
> [EMAIL PROTECTED] 
> http://listserv.sap.com/mailman/listinfo/sapdb.general
>
> _______________________________________________
> sapdb.general mailing list
> [EMAIL PROTECTED] 
> http://listserv.sap.com/mailman/listinfo/sapdb.general
>

_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general


_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general


--__--__--

Message: 2
From: "Venkat" <[EMAIL PROTECTED]>
To: "SAP" <[EMAIL PROTECTED]>
Subject: RE: Unable to connect ot sapdb7.4 using jdbc
Date: Wed, 5 Feb 2003 13:00:18 +0530

Hi all,
Thanks for the help.
Now itz working.
Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST","TEST","TEST");
or
Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST?user=TEST&passwo
rd=T
EST");

Sorry for a stupid thing i game wrong ip insted of local host.

Thanks for the help
Again sory for the stupid thing as my ip was changed i didn't noticed
that.

Thank you all
venkat


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Venkat
Sent: Wednesday, February 05, 2003 11:58 AM
To: SAP; Brian C. Woodcox
Subject: RE: Unable to connect ot sapdb7.4 using jdbc


Hi Brain,
Thanks for the correction.But i still facing the problem


Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST");

I tried even
Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST?user=TEST&passwo
rd=T
EST");
Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST?user=DBM&passwor
d=DB
M");
Connection con =
DriverManager.getConnection("jdbc:sapdb://localhost/TST?user=TEST&passwo
rd=T
EST&sqlmode=INTERNAL");

But no luck.

I check with sqlstudio and it is connection to TST. and all the services
are running.

Now error is
com.sap.dbtech.jdbc.exception.JDBCDriverException: SAP DBTech JDBC:
Cannot connecto to jdbc:sapdb://192.168.1.64/TST [Cannot connect to host
192.168.1.64 [connection refused: connect], [2].].

Where i went wrong.

Thanks in advance
venkat


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Brian C.
Woodcox
Sent: Wednesday, February 05, 2003 11:26 AM
To: SAP
Subject: RE: Unable to connect ot sapdb7.4 using jdbc


Hi Venkat,

The reason there is no "suitable driver", is because you still have an
error in your connection command.  Actually Marco gave you the correct
answer.

Please compare the following:

Connection con = DriverManager.getConnection
"jdbc:sapdb//localhost/TST","TEST","TEST");

Connection con = DriverManager.getConnection
"jdbc:sapdb://localhost/TST","TEST","TEST");

The second one is the correct one.  Notice the (:)colon after sapdb.

Brian.

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Venkat
Sent: Tuesday, February 04, 2003 10:08 PM
To: SAP
Subject: Unable to connect ot sapdb7.4 using jdbc


Hi all,
I downloaded the sapdbc.jar and pointed classpath to the jar file I am
able to compile the java file but unable to run it.


When i try to connect sapdb using java
I am geting execption java.sql.Exception : no suitable driver

I tried these options
Class.forName("com.sap.dbtech.jdbc.DriverSapDB");

Connection
con=DriverManager.getConnection("jdbc:sapdb//localhost/TST","TEST","TEST
");

Connection con=DriverManager.getConnection("jdbc:sapdb//localhost/TST");

insted of localhost i gave the ip

But no luck.

I checked the helloSapdb.java
Here the connection part.

          user = options.getProperty ("user");
        password = options.getProperty ("password");
        String url = "jdbc:sapdb://" + host + "/" + dbname;
        /*
         * load driver and connect
         */
        Class.forName ("com.sap.dbtech.jdbc.DriverSapDB");
        Connection connection = DriverManager.getConnection (url, user,
password);

Can some one help me where i went wrong.

Thanks in advance
regards
venkat

-----Original Message-----
From: Paskamp, Marco [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 04, 2003 5:55 PM
To: 'Venkat'; SAP
Subject: RE: New Bie--Unable to install


Hello,
your connect URL is wrong. The general layout is:
jdbc:sapdb://<host>/<database_name>. So, you should use the following
URL: "jdbc:sapdb://localhost/TST" Details about the connect URL, connect
options and a simple hello-JDBC-world programm can you find at:
http://www.sapdb.org/7.4/jdbcSapdbcEng.html

Regards,
Marco
----------------------------------------------
Marco PASKAMP
SAP DB, SAP Labs Berlin

> -----Original Message-----
> From: Venkat [mailto:[EMAIL PROTECTED]]
> Sent: Dienstag, 4. Februar 2003 13:15
> To: SAP
> Subject: RE: New Bie--Unable to install
>
>
> Hi all,
> I installed the sapdb and able to configure all the services. The 
> problem is i have to login as administrator.
>
> I am able to run all the services.
> I created a table login under TST database and  now i want to connect 
> using java.
> I downloaded the sapdbc.jar and pointed classpath to the jar file
> I am able to compile the java file but unable to run it.
>
> it is throwing exception : no suitable driver
>
> Here my connection
>
> Class.forName("com.sap.dbtech.jdbc.DriverSapDB");
> Connection 
> con=DriverManager.getConnection("jdbc:sapdb//localhost:85/TST"
> ,"TEST","TEST"
> );
>
>
> Do i need to download some driver for jdbc bridge?
> I created a dsn but no luck.
>
> Can some one help me the parameter to pass into
> DriverManager.getConnection();
>
> Thanks in advance.
>
> regards
> venkat
>
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Venkat
> Sent: Tuesday, February 04, 2003 3:26 PM
> To: SAP
> Subject: New Bie--Unable to install
>
>
> Hi all,
>
> I am new to sapdb and trying to install sapdb 7.4 
> (sapdb-all-win-32bit-i386-7_4_3_7).
>
> When i give the option profile id: 5 and giving all defalut values it 
> started installing and after some time window is closed.
>
> My environment is win 2000 with sp2.
>
> Can some one tell me what is happening?
>
> Thanks in advance
>
> regards
> venkat
>
> _______________________________________________
> sapdb.general mailing list
> [EMAIL PROTECTED] 
> http://listserv.sap.com/mailman/listinfo/sapdb.general
>
> _______________________________________________
> sapdb.general mailing list
> [EMAIL PROTECTED] 
> http://listserv.sap.com/mailman/listinfo/sapdb.general
>

_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general


_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general


--__--__--

Message: 3
To: [EMAIL PROTECTED]
From: "Joerg P. Bertram" <[EMAIL PROTECTED]>
Subject: Re: TABLELOAD problem
Date: Wed, 5 Feb 2003 09:57:20 +0100

Hi,
I've got the same problem with keyword OUTFILE by using the TABLEEXTRACT
ALL Command! Now I am using the DATAEXTRACT and DATALOAD Command for
transfering any data.

Best Regards
Joerg

"Oliver Flege" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi,
>
> I'm having trouble with using the TABLELOAD-command:
> The command parser does not seem to recognize the INFILE keyword, 
> which it should according to the documentation. Here is what the 
> repmcli does:
>
> D:\Programme\SAPDB\depend\bin>repmcli.exe -v
> Version: 7.4.3
>
> D:\Programme\SAPDB\depend\bin>repmcli.exe -u foo,bar -d FUSION -b 
> d:/temp/sapdb/load-c110.txt Opened connection to Loader SERVER at node

> local host. Loader Server Protocol File:
> 'd:\programme\sapdb\indep_data\wrk\loader.prt'
>
> User CHICAGO connected to database FUSION on local host. TABLELOAD 
> TABLE tab_c110 INFILE 'd:/temp/sapdb/c110.dump' OUTFILE 
> 'd:/temp/sapdb/restart.dat' Error during execution
> -->-25281
> Syntax error at position 26 (Unexpected keyword: INFILE).
>
> Defined maximum number of errors (1) reached
>
>
> 1 error(s) during execution of command file 
> 'd:/temp/sapdb/load-c110.txt'.
> ---> See log file(s) for more information.
>
>
> Some error(s) occurred running command.
> ---> See log file(s) for more information.
>
>
> Best Regards,
>
>   Oliver




--__--__--

Message: 4
From: "Bumes, Hans-Georg" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: FW: TABLELOAD problem
Date: Wed, 5 Feb 2003 10:29:50 +0100 


 joerg wrote,
> I've got the same problem with keyword OUTFILE by using the
> TABLEEXTRACT ALL
> Command!
> Now I am using the DATAEXTRACT and DATALOAD Command for 
> transfering any
> data.
> 
 the correct syntax of tableextract/tableload is documented in 
 
 
http://www.sapdb.org/7.4/htmhelp/e2/55683ab81fd846e10000000a11402f/frame
set.htm

SAP DB Loader: SAP DB 7.4 
->SAP DB Loader: Commands and SQL Statements
  -> Commands for Loading and Unloading 

-- 
Hans-Georg Bumes
SAP DB, SAP Labs Berlin
http://www.sapdb.org/


--__--__--

Message: 5
From: [EMAIL PROTECTED]
Date: Wed, 05 Feb 2003 10:41:14 +0100
To: [EMAIL PROTECTED]
Subject: Alter Table Statement: -5015 Pos(241) Missing keyword:FROM

Hello

This statement

    alter table artikel add a char(1)


as well as other 'usual' alter table statements produce the following
error message (not with all tables but with several):

    -5015 Pos(241) Missing keyword:FROM

It seems that something within the catalog is wrong and causes this
error. The checks all passed correctly.

Has anyone an idea what exactly could cause that.

(We use SAPDB 7.3.0, Build 030-000-088-166)


Vtrace:

... ...

 b02get  root                    4; e_ok
>b02repl key(12): 00000000 00005EBB 00220001
 b02repl root                    4; e_ok
>b02get  key(12): 00000000 00005EBB 00210001
 b02get  root                    4; e_ok
>b02repl key(12): 00000000 00005EBB 00210001
 b02repl root                    4; e_ok
>b02repl key(12): 00000000 00005EBB 000A0001
 b02repl root                    4; e_ok
>b02get  key(12): 00000000 00005EAB 00010001
 b02get  root                    4; e_ok
>b02repl key(12): 00000000 00005EAB 00010001
 b02repl root                    4; e_ok
>b02get  key(20): 00000000 00005EAB 00060001 FFFF0000 0000000D
 b02get  root                    4; e_ok
>b02repl key(20): 00000000 00005EAB 00060001 FFFF0000 0000000D
 b02repl root                    4; e_ok
>b02repl key(28):
         00000000 00005EAB 00070001 FFFF0000 0000000D FFFF0000 0000000D
 b02repl root                    4; e_ok
>b02get  key(12): 00000000 00005EAB 000A0001
 b02get  root                    4; e_ok
>b02repl key(12): 00000000 00005EAB 000A0001
 b02repl root                    4; e_ok
>b02repl key(12): 00000000 00004609 00010001
 b02repl root                    4; e_ok
>b02del  key(12): 00000000 00004609 00170020
 b02del  root                    4; e_ok
 KB05 id11713168/1 e_ok
>b07cnext zerokey
 b07cnext root               15004; *** key_not_found ***
>b07cdel key(12): FF00003E 01460020 00870000
 b07cdel root                 2890; *** key_not_found ***
>b07cdel key(12): FF00003E 02460020 00870000
 b07cdel root                 2890; *** key_not_found ***
>b07cdel key(12): FF00003E 03460020 00870000
 b07cdel root                 2890; *** key_not_found ***
>KB05 id11713168 rollback
 
===== log_writer.id0 ==================================26.2222  page 27
*b15write log log --------> 163754; pno log 1:    17211
 
===== T36 ===== id11713176 ============================26.2260  page 27
KB05 id11713176 e_ok
>KB05 id11713176 select_row direct TABID 0-97 key(9):
     003C4985 0020454E 47 '.<I.. ENG'
>b02direct_ql key(9): 003C4985 0020454E 47 '.<I.. ENG'
 b02direct_ql root              13; e_ok
 KB05 id11713176 return_result
RECEIVE: ascii, full_swap, 70300-ODB     (1 segment, len: 96)
(26.2483  page 27)
   *** -5015 / RETURN SEGMENT 1   (1 part, len: 96)
         alter_table_fc, errpos: 241, sqlstate: '42000'
   errortext PART   (1 argument, size: 36520)
         buf(34): 'Missing keyword:FROM              '
 
===== timeout.id0 =====================================26.2659  page 27
>KB51 inspect locklist
 KB51 inspect locklist e_ok
 
===== T37 ===== nil.id0 ===============================26.2715  page 27
 
REQUEST: ascii, full_swap, 70300-DBM     (1 segment, len: 152)
(26.2715  page 27)
   dbs SEGMENT 1   (2 parts, len: 152)
         session_sqlmode, internal_cmd
   command PART   (1 argument, size: 32552)
         buf(31): 'CONNECT "DBM" IDENTIFIED by :PW'
   data PART   (1 argument, size: 32504)
         buf(44):
         00C791FA C53AF78E 420D499F 9BD8FE2D 4DC692E3 40369BDC 30002E63
         6F6D2020 20202020 20202020 20202020
         '.....:[EMAIL PROTECTED]              '
     [T37 ===== id11713177  new TransNo]                 26.2971  page
27
>b01t_create    tfnTemp; fileTfnNo = 0; ttfnPars
                session: 27810; fid = 0
                fn: 1A00 000000006CA20600 000000000000
 b01t_create root            28698; e_ok
>b01t_create    tfnTemp; fileTfnNo = 0; ttfnInto
                session: 27810; fid = 1
                fn: 1A00 000000006CA20800 000001000000
 b01t_create root            28772; e_ok
>KB05 id11713177 select_row direct TABID 0-97 key(9):
     00C31000 0020454E 47 '..... ENG'
>b02direct_ql key(9): 00C31000 0020454E 47 '..... ENG'
 b02direct_ql root              13; e_ok
 KB05 id11713177 return_result
>KB05 id11713177 connect
 KB05 id11713177 e_ok
RECEIVE: ascii, full_swap, 70300-DBM     (1 segment, len: 3344)
(26.3370  page 27)
   ok / RETURN SEGMENT 1   (3 parts, len: 3344)
         connect_fc, sqlstate: '00000'
   user_info_returned PART   (1 argument, size: 36464)
         buf(18):
         03444241 03444241 08535441 4E444152 4400 '.DBA.DBA.STANDARD.'
   conv_tables_return PART   (4 arguments, size: 36424)
         buf(1024):
         00010203 04050607 08090A0B 0C0D0E0F 10111213 14151617 18191A1B
         1C1D1E1F 20212223 24252627 28292A2B 2C2D2E2F 30313233 34353637
         38393A3B 3C3D3E3F 40616263 64656667 68696A6B 6C6D6E6F 70717273
         74757677 78797A5B 5C5D5E5F 60616263 64656667 68696A6B 6C6D6E6F
         70717273
         '................................ !"#$%&'()*+,-./0123456789:;<'
         '=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrs'
   sessioninfo_return PART   (1 argument, size: 35384)
         buf(2208):
         0000006C A2094444 2D4D4F4E 2D595920 20202020 20202020 20202020
         20202020 20202020 20202020 20202020 20202020 20202020 20202020
         20202020 20202020 20202020 20202020 20202020 20202020 20202020
         20202020 20202020 20202020 20202020 20202020 20200C10 0E05042D
         1505042D
         '...l..DD-MON-YY                                              '
         '                                             .....-...-'
 
REQUEST: ascii, full_swap, 70300-DBM     (1 segment, len: 64)
(26.3842  page 27)
   dbs SEGMENT 1   (1 part, len: 64)
         session_sqlmode, user_cmd
         with_info
   command PART   (1 argument, size: 32552)
         buf(7): 'vtrace '


Thanks for any comment on that.

G. Matter

--__--__--

Message: 6
To: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
Subject: UNIFACE and SAPDB
Date: Wed, 5 Feb 2003 10:45:48 +0100

PHByZT4NDQ0NSGksDQ1qdXN0IGEgbGl0dGxlIHF1ZXN0aW9uOiBhcmUgYW55b25lIG92ZXIg
dGhl
cmUgdXNpbmcgU0FQREIgd2l0aCBVbmlmYWNlPyBIb3cNYXJlIHlvdSBjb25uZWN0aW5nIHRv
Pw0N
VElBLA0NUm9kbmV5DQ08L3ByZT4=

--__--__--

Message: 7
From: =?UTF-8?B?SG9sbGFuZCwgSm9obg==?= <[EMAIL PROTECTED]>
To: =?UTF-8?B?J3NhcGRiLmdlbmVyYWxAbGlzdHNlcnYuc2FwLmNvbSc=?=
         <[EMAIL PROTECTED]>
Subject: =?UTF-8?B?bWF4IGtlcm5lbCB0YXNrcw==?=
Date: Wed, 5 Feb 2003 11:44:11 +0100 

hi,

how can i limit the number of started kernel tasks for one database...
or where can find information on this subject?

John Holland
Consultant
BANCOTEC
Ein Unternehmen der Cellent AG.

Calwer Strasse 33, 70173 Stuttgart
Tel: ++49 711 222 992 900
Fax: ++49 711 222 992 999
Mobile: ++49 172 7886719 
mailto:[EMAIL PROTECTED]
http:\\www.bancotec.de
http:\\www.cellent.de


--__--__--

_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general


End of sapdb.general Digest

_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to