SQL DB are created

Hi to all
after installing the first Single Server module, at the sql i have seen 3x
DB
STDSDB
STMSDB
STRSDB
by installing the second module PDS i get a windows message that ask me
"The DB STDSDB already exists on the server name ___. Do you want to use it
as-is?
default setting is "YES" leave the DB as is, if clicking "NO" ESM will
delete the DB and creating again the same DB
And its happen again by next module management service
Way it happens???

The SSI (Single Server Installation) takes care of all services needed on the server side. You'll only need to install the Management Console (MC) on the admin workstation - or server - besides SSI.
The PDS and MS installs are for distributed installations. I'd strongly recommend you read the installation guide for ZESM before you continue.
http://www.novell.com/documentation/zesm35/index.html
>>>
From: Avi Botbol<[email protected]>
To:novell.support.zenworks.endpoint-security-management
Date: 3/16/2009 12:34 PM
Subject: SQL DB are created
Hi to all
after installing the first Single Server module, at the sql i have seen 3x
DB
STDSDB
STMSDB
STRSDB
by installing the second module PDS i get a windows message that ask me
"The DB STDSDB already exists on the server name ___. Do you want to use it
as-is?
default setting is "YES" leave the DB as is, if clicking "NO" ESM will
delete the DB and creating again the same DB
And its happen again by next module management service
Way it happens???

Similar Messages

  • BPC 7 MS: Which SQL statements are created for writing with input schedule?

    Hi,
    I wanted to know which SQL statements are created and executed if a user submits values using an Excel input schedule to an application.
    When I check the correspoinding MS SQL server log files, I see that data is read from the three partitions belonging to the application and put into a temporary table, but I can't find anything about writing back to the application (presumably the WB partiton...) in the log.
    There are some cryptic entries in the log file as well, but they are not human-readale... are there any BPC logfiles that could tell me which SQL statements are created and executed to write back the new values to the application? Thanks!

    Hi,
    As far as i know, when a user send data entry from an excel schedule, it will be written in the WB table of the application (for each application, you have 3 Data tables : WB, Fact2 and Fact).
    I presume that the SQL statement may be an INSERT or UPDATE statement.
    Technically, the update is done by the send governor service (hosted on your BPC application server).
    There is no log that will show you the SQL Statement besides a SQL trace that you have to setup in SQL Server 2005 Manager Studio.
    btw, the data are written in the Relationnal database but are read from the OLAP cube. The olap Cube is split in 3 partitions (ROLAP on WB table / and MOLAP on fact and fat2). Wich mean that every new entry in WB will be automatically "updated" in the cube.
    Some DM packages can directly write data in fact2 table. In this case you need to reprocess the cube to get it loaded.

  • Folders are creating automatically in Sql Server Report Manger

    Dear All,
    I am using Sql Server Reporting Services. And i have created Diffrent Folders in Report Manager,
    And deployed various reports. Now the problem is one folder created automatically in Report Manager as 'User Folders'
    and in that folder, sub folders are created automatically whenenver users are extracting the reports.
    Iam getting the below error whenever iam going to delete that folders,
    The permissions granted to user 'sbkhetan' are insufficient for performing this operation. (rsAccessDenied)
    Pl help me on this issue. How can i delete that folders,
    Thanks

    That folder is part of the My Reports functionality.  As long as you've got that activated you cannot delete the folder...
    "While the feature is activated, Users Folders and its subfolders cannot be deleted. Furthermore, the name "My Reports" becomes
    a reserved name for folders created under the root node (Home)."
    Ref. Enabling and Disabling My Reports
    MCITP SQL Server 2008 (BI & DEV); MCTS SQL Server 2008 (BI, DEV & DBA)
    Check out my articles at BI: Beer Intelligence?

  • How to delete all TABLEs in Schema SYS which are created since 09:15?

    Unfortunately a script created lots of tables in the wrong Tablespace (=SYSTEM) and Schema (=SYS).
    How can I delete (in one DDL command) all TABLES which are created inTablespace=SYSTEM and SCHEMA=SYS
    during the last 3 hours resp. since 09:15 of 25th Sep 2011 ?
    Alternatively: How can I move these TABLEs to another Schema (e.g. ATEST) and Tablespace (USERS)?
    Is this possible with Oracle XE or only with Oracle Enterprise?
    Peter

    user559463 wrote:
    Unfortunately a script created lots of tables in the wrong Tablespace (=SYSTEM) and Schema (=SYS).
    How can I delete (in one DDL command) all TABLES which are created inTablespace=SYSTEM and SCHEMA=SYS
    during the last 3 hours resp. since 09:15 of 25th Sep 2011 ?
    Alternatively: How can I move these TABLEs to another Schema (e.g. ATEST) and Tablespace (USERS)?
    Is this possible with Oracle XE or only with Oracle Enterprise?
    PeterYou can query dba_objects and join it with dba_tables where tablespace_name='SYSTEM' , then drop the tables result of the query; the idea is to use the following query;
    SQL> select OWNER, OBJECT_NAME from dba_objects where OBJECT_TYPE='TABLE' and OWNER = 'SYS' and CREATED >= sysdate - 3 / 24;Please consider marking your questions as answered, when it is the case;
    Handle:      user559463 
    Status Level:      Newbie
    Registered:      Feb 18, 2007
    Total Posts:      583
    Total Questions:      266 (186 unresolved)Edited by: orawiss on Sep 26, 2011 4:03 PM

  • Issues with the SQL wrapper scripts created with the DB adapter

    Hi All,
    We have the wrapper sql scripts created with the DB adapter configurations which are being used to invoke the stored procedures.
    To give you a background on the wrapper sql scripts-The Adapter Configuration wizard generates a wrapper API when a PL/SQL API has arguments of data types, such as PL/SQL Boolean, PL/SQL Table, or PL/SQL Record.
    These two SQL files are saved in the same directory where the WSDL and XSD files are stored, and are available in the Project view.
    The issue we are facing now is that whenever the associated package or the procedure structure undergoes a change we see an error as given below:
    An unhandled exception has been thrown in the ESB system. The exception reported is: "org.collaxa.thirdparty.apache.wsif.WSIFException: esb:///ESB_Projects/Application1_ABC_ESB/DBADP_Update_Out.wsdl [ DBADP_Update_Out_ptt::DBADP_Update_Out(InputParameters,OutputParameters) ] - WSIF JCA Execute of operation 'DBADP_Update_Out' failed due to: Error while trying to prepare and execute an API. An error occurred while preparing and executing the APPS.XXIRIS_SOA_R_WRAPPER.XXIRIS_AR_CUST_K$ API. Cause: java.sql.SQLException: ORA-04068: existing state of packages has been discarded ORA-04061: existing state of package body "APPS.XXIRIS_AR_CUST_K" has been invalidated ORA-04065: not executed, altered or dropped package body "APPS.XXIRIS_AR_CUST_K" ORA-06508: PL/SQL: could not find program unit being called: "APPS.XXIRIS_AR_CUST_K" ORA-06512: at "APPS.XXIRIS_SOA_R_WRAPPER", line 1 ORA-06512: at line 1 [Caused by: ORA-04068: existing state of packages has been discarded ORA-04061: existing state of package body
    In such cases we need to either execute the wrapper scripts again or refresh the connection pool in case the wrapper sql scripts for that procedure are not available.
    In some cases we see that the first instance errors out.However the second request and the subsequent requests after that goes through successfully.
    Please do let me know if anyone has faced such issues before.
    Any inputs in this regard would be of great help.
    Thanks in advance!
    Deepthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I stumbled on a link in the oracle forum which says that the "create or replace package XXX" at the start of the PL/SQL procedure when run seems to intermittently cause the ORA-04068: existing state of packages has been discarded problem.
    As per the solution suggested an “alter package XXX compile" can be executed after the changes are made and then we would no longer get the error in BPEL/ESB and dont have to bounce the server too.
    __http://forums.oracle.com/forums/thread.jspa?threadID=185762_
    However the above solution does not seem to resolve the issue.
    Any help in this regard would be highly appreciated.
    Thanks,
    Deepthi

  • Oracle SQL template to create re-usable DDL/DML Scripts for Oracle database

    Hi,
    I have a requirement to put together a Oracle SQL template to create re-usable DDL/DML Scripts for Oracle databases.
    Only the Oracle DBA will be running the scripts so permissions is not an issue.
    The workflow for any DDL is as follows:-
    1) New Table
    a. Check if the table exists from the system/admin views.
    b. If table exists then give message "Table Exists"
    c. If table does not exist then execute DDL code
    2) Add Column
    a. Check if Column exists for a given table from system/admin views
    b. If column exists in the specified table,
    b1. backup table.
    b2. alter table to make changes to the column
    b3. verify data or execute dml script convert from backup to the new change.
    c. If Column does not exist
    c1. backup table
    c2. alter table to add column
    c3. execute dml to populate column with default value.
    The DML scripts are for populating base tables with data required for business operations.
    3) Add new row
    a. check if row exists by comparing old values of each column with new values to be added for the new record.
    b. If exists, give message row exists
    c. If not exists, add new record.
    4) Update existing record (We have createtime columns in these tables so changes can be tracked)
    a. check if row exists using primary key.
    b. If exists,
    b1. deactivate the record using the "active" column of the table
    b2. Add new record with the changes required.
    c. If does not exist, add new record with the changes required.
    Could you please help with some ideas which can get this done accurately?
    I have tried several ways, but I am not able to put together something that fulfills all requirements.
    Thank you,

    First let me address your question. (This is the easy part.)
    1. The existence of tables can be found in DBA_TABLES. Query it and and then use conditional logic and execute immediate to process the DDL.
    2. The existence of table columns is found in DBA_TAB_COLUMNS. Query it and then conditionally execute your DDL. You can copy the "before picture" of the table using that same dba view, or even better, use DBMS_METADATA.
    As for your DML scripts, they should be restartable, reversible, and re-run-able. They should "fail gracefully" on error, be written in such a way that they can run twice in a row without creating duplicate changes.
    3. Adding appropriate constraints can prevent invalid duplicate rows. Also, you can usually add to the where clause so that the DML does only what it needs to do without even relying on the constraint (but the constraint is there as a safeguard). Look up the MERGE statement to learn how to do an UPSERT (update/insert), which will let you conditionally "deactivate" (update) or insert a record. Anything that you cannot do in SQL can be done with simple procedural code.
    Now, to the heart of the matter...
    You think I did not understand your requirements?
    Please be respectful of people's comments. Many of us are professionals with decades of experience working with databases and Oracle technology. We volunteer our valuable time and knowledge here for free. It is extremely common for someone to post what they feel is an easy SQL or PL/SQL question without stating the real goal--the business objective. Experienced people will spot that the "wrong question" has been asked, and then cut to the chase.
    We have some good questions for you. Not questions we need answers from, but questions you need to ask yourself and your team. You need to reexamine this post and deduce what those questions are. But I'll give you some hints: Why do you need to do what you are asking? And will this construct you are asking for even solve the root cause of your problems?
    Then ponder the following quotations about asking the right question:
    Good questions outrank easy answers.
    — Paul Samuelson
    The only interesting answers are those which destroy the questions.
    — Susan Sontag
    The scientific mind does not so much provide the right answers as ask the right questions.
    — Claude Levi-Strauss
    You can tell whether a man is clever by his answers. You can tell whether a man is wise by his questions.
    — Mahfouz Naguib
    One hears only those questions for which one is able to find answers.
    — Friedrich Nietzsche
    Be patient towards all that is unresolved in your heart and try to love the questions themselves.
    — Rainer Maria Rilke
    What people think of as the moment of discovery is really the discovery of the question.
    — Jonas Salk
    Judge a man by his questions rather than his answers.
    — Voltaire
    The ability to ask the right question is more than half the battle of finding the answer.
    — Thomas J. Watson

  • Limits to the SQL Statement when creating External Dictionaries

    Limits to the SQL Statement when creating External Dictionaries
    Does RC not provide the ability to concatenate multiple db columns into a single dictionary field?  When trying a query like:  SELECT Col1 + Col2 AS NewCol1 FROM Tbl1 we get an error("Unknown internal error") after clicking to save/create the new  dictionary.  This is on version 2008.3

    What if you created a buffer table in your external database, that is populated by your field-merging query, and then invoke that from Newscale? The temporary table would be updatable by newscale (although, presumably, you wouldn't actually have newscale update it), so then it'd accept that connection.
    For example, I think you could do something like that by creating a View in MS SQL Server. Likewise, in other database brands you could create a Trigger that would update the buffer table each time data in the real tables are changed.

  • DMRS_tablename --why these tables are creating

    Hi ,
    i created a schema and designed the datamodel through the SQL DATA MODELER..after extrating and running the ddl the tables are created perfectly.but many tables in the form of dmrs_tablename are created reduntanly. i dont know why this created.
    but im sure these are created after connecting the schema to data modeler tool only.kindly let me know why this are creating, wat are those tables and importance of those tables.
    thanks in advance,
    Jeevanand.K

    Hi Jeevanand,
    DMRS_xxx tables are created in "export to reporting schema" functionality. If you don't need reporting repository then go again to "export to reporting schema", select the connection for your schema and you can drop tables using "Drop repository" in maintenance tab.
    Philip

  • Situations when child cursors are created.....

    Hi ,
    I 'd like to ask when child cursor(s) is created..., when a similar or exact text string for sql statement is found on the SQL AREA (Library cache of shared pool) but for a/many reason(s) - described in the v$sql_shared_memory- the same sql area cannot be used..., or for any other reason....???
    Does the value of CURSOR SHARING parameter affect this matter...??????
    Many thanks,
    Simon
    Message was edited by:
    sgalaxy
    Message was edited by:
    sgalaxy

    Hi Simon,
    The purpose of child cursors is to allow Oracle to save some memory. If you have a SQL that that is an exact literal match, but can't be shared for some other reason (i.e. bind variable mismatch, optimizer environment mismatch, etc), a new child is created. This allows one literal SQL statement to have two separate execution plans, without wasting space in the library cache by duplicating SQL that is identical. When that happens, V$SQL_SHARED_CURSOR should tell you the reason for the extra child. (I say "should" cause there have been numerous bugs filed on various versions where there are cases that child cursors are created and no reason is populated in V$SQL_SHARED_CURSOR.)
    Now, how does CURSOR_SHARING fit into the picture? Well, if you have a well-designed application that uses bind variables to allow for sharable SQL, then CURSOR_SHARING is not required and should be set to exact. In cases where bind variables are not used, and the shared pool is getting slammed w/ lots of unique literal SQL, then setting CURSOR_SHARING to force or similar will replace literals with system generated bind variables, and allow for sharing of the resultant SQL.
    Hope that helps,
    -Mark

  • SQL error: Error creating fake recordset:

    Hello, I have this problem with a login page but only in the server, in local (wamp) I have no problem. Someone can help me? Thanks
    Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in /httpdocs/includes/common/lib/db/KT_Connection.class.php on line 71
    Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in /httpdocs/includes/common/lib/db/KT_Connection.class.php on line 71
    Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in httpdocs/includes/common/lib/db/KT_Connection.class.php on line 92
    Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in httpdocs/includes/common/lib/db/KT_Connection.class.php on line 105
    Errore:
    Errore interno.
    Developer Details:
    tNG_fields.getFakeRecordset:
    SQL error: Error creating fake recordset:
    SQL:
    SELECT '' AS kt_login_user, '' AS kt_login_password, '0' AS kt_login_rememberme (FIELDS_FAKE_RS_ERROR)
    tNG Execution Trace - VIEW
    tNG_login.executeTransaction
    STARTER.Trigger_Default_Starter
    tNG_login.getRecordset
    tNG_login.getLocalRecordset
    tNG_login.getFakeRecordset* (in red)

    -----
    These are the privileges. They are ok to create temporary tables?
    yes, as "all privileges" also includes granting the "CREATE TEMPORARY TABLES" privilege.
    Granting each and every possible privilege is of course pretty insecure, and I would never do that on a public webserver -- that said, you can also narrow down the privileges like this:
    GRANT SELECT, INSERT, UPDATE, DELETE, CREATE TEMPORARY TABLES ON database.* TO username@'localhost' IDENTIFIED BY 'password';
    please see a list of possible privileges and their meaning here: http://kb.mediatemple.net/questions/788/HOWTO:+GRANT+privileges+in+MySQL
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Is this the start... Verizon is blocking Google Wallet which is very nice, and you probably don't know they are creating their own Verizon Wallet

    I have been with this company for over 10 years and frankly I always overlooked one thing wasn't to keen on and that was some of the services Verizon offered on their website which many of the account related services they have as apps so you can view from your phone are good and useful.  I have been an Android user since the first Moto Droid to the Incredible and Inc2, then I though I was gonna go iphone, until I was able to use one for a month.  Don't get me wrong it wasn't bad it was my brothers 4G on another network when he upgraded to the 4GS.  Anyway no real problems other than Android just has more to offer so I went with the Nexus Galaxy and stayed with Verizon, after I was flipping a coin to go to Sprint.  Anyway the reason I am leaving Verizon is due to their attempt to create apps to try to compete with googles apps and Verizon charges...  you can find most for free from the droid market(which is the Play store now) such as Navigation.  The free Google Nav is awesome, I also have google voice(free)  so I get text messages emailed to me and vmails emailed and texted to me as well as being able to listen straight from phone by pushing play by the missed call.  Verizon continutes to create these apps that also cost money and aren't near as good.  I actually feel bad for the people who think the VZ nav is in fact the google nav.  Now they are blocking a new service of Google's called Google Wallet.  It's free and really cool, but Verizon blocks you from installing it or using it and Verizon is spending over a 100,000,000 dollars to create their own Wallet APP  that i'm sure won't be free.  So it's not that one app as to why I am leaving, its a number of things that as an experienced user and add the fact that  I work in the tech industry, in sales that I Verizon taking advantage of customers, and I don't work that way or like it.   Okay you go buy a verizon phone, it will have the VZ Nav right there on the home screen, however there will be no google Nav, and for newbies they usually think this is the navigation everyone talks about.  You have to go download the Google Maps which is a turn by turn navigation always up to date and is awesome.  I watch my kid driving down the road at all times for free.   My point is now that their blocking Google Wallet because they are creating there own wallet, which won't be as good, and probably cost money to even spend money meaning they will charge for it.  What is the next brilliant thing that Google comes out with  that you can intergrate into your Google services.    So what is the point of trying to compete with Google on apps, I mean the Verizon wallet?  Why it makes no sense.  Why block an app thus not giving you the luxery.  They have their reasons of course such as security, and other reasons that it could cause problems but, hey if you dare to spend the outrageous amount of money to activate your hostspot to connect your computer wirelessly in a park.  75% of the people who do this are going to be on an unsecured network that anyone can connect to even with security turned on.  So they say there worried about security on the wallet app, because someone may cold get access to your small amount that most people keep on the google wallet but the wireless hotspot is putting much more that money out there. it's putting personal things and files on your computer out there.  I just dont' get why they can't provide their songs and ring tones and apps that allow you to see you data usage and leave the apps for the Google market.  For you who don't know please download google maps and you will have an awesome navivation.  Also google talk, voice, chat, and there apps on the google market for free such as a punch clock for time.  I saw one for over $14 on the verison app store.  So stick to what you are good at ,and don't block apps that other companies aren't blocking including at&T now, and they were in on the $100,000,000 to create this app along with Tmoblie and Verizon.  I use an android because of the capapbilites that google gives you, and the apps that they offer for free or no money.  Go look in the Verizon apps and see how much you will pay.  Most that cost money come preinstalled on your phone so all you have to do is use it and you start getting charged.  This is a 3 year decision making.  I don't like that people can easily get charged for services without even knowing just because the app was installed and they used it once.  Just stay with what your good at and let the android users rightly use the google apps.  After all Google Saved your business if you really want to think about it.  If you didn't have the android OS, how many sales would you be getting?  Where would your company be.  This app was developed by Google which means it ties into everything else such as making online payments with the google card.  Blocking APPS developed by the developer of the Operating System that single handedly changed  the game, and has Made  you as a company far better off than you would have ever been had they not developed android.  Not a good Idea.  Bite the hand that feeds you.

    I have been with this company for over 10 years and frankly I always overlooked one thing wasn't to keen on and that was some of the services Verizon offered on their website which many of the account related services they have as apps so you can view from your phone are good and useful.  I have been an Android user since the first Moto Droid to the Incredible and Inc2, then I though I was gonna go iphone, until I was able to use one for a month.  Don't get me wrong it wasn't bad it was my brothers 4G on another network when he upgraded to the 4GS.  Anyway no real problems other than Android just has more to offer so I went with the Nexus Galaxy and stayed with Verizon, after I was flipping a coin to go to Sprint.  Anyway the reason I am leaving Verizon is due to their attempt to create apps to try to compete with googles apps and Verizon charges...  you can find most for free from the droid market(which is the Play store now) such as Navigation.  The free Google Nav is awesome, I also have google voice(free)  so I get text messages emailed to me and vmails emailed and texted to me as well as being able to listen straight from phone by pushing play by the missed call.  Verizon continutes to create these apps that also cost money and aren't near as good.  I actually feel bad for the people who think the VZ nav is in fact the google nav.  Now they are blocking a new service of Google's called Google Wallet.  It's free and really cool, but Verizon blocks you from installing it or using it and Verizon is spending over a 100,000,000 dollars to create their own Wallet APP  that i'm sure won't be free.  So it's not that one app as to why I am leaving, its a number of things that as an experienced user and add the fact that  I work in the tech industry, in sales that I Verizon taking advantage of customers, and I don't work that way or like it.   Okay you go buy a verizon phone, it will have the VZ Nav right there on the home screen, however there will be no google Nav, and for newbies they usually think this is the navigation everyone talks about.  You have to go download the Google Maps which is a turn by turn navigation always up to date and is awesome.  I watch my kid driving down the road at all times for free.   My point is now that their blocking Google Wallet because they are creating there own wallet, which won't be as good, and probably cost money to even spend money meaning they will charge for it.  What is the next brilliant thing that Google comes out with  that you can intergrate into your Google services.    So what is the point of trying to compete with Google on apps, I mean the Verizon wallet?  Why it makes no sense.  Why block an app thus not giving you the luxery.  They have their reasons of course such as security, and other reasons that it could cause problems but, hey if you dare to spend the outrageous amount of money to activate your hostspot to connect your computer wirelessly in a park.  75% of the people who do this are going to be on an unsecured network that anyone can connect to even with security turned on.  So they say there worried about security on the wallet app, because someone may cold get access to your small amount that most people keep on the google wallet but the wireless hotspot is putting much more that money out there. it's putting personal things and files on your computer out there.  I just dont' get why they can't provide their songs and ring tones and apps that allow you to see you data usage and leave the apps for the Google market.  For you who don't know please download google maps and you will have an awesome navivation.  Also google talk, voice, chat, and there apps on the google market for free such as a punch clock for time.  I saw one for over $14 on the verison app store.  So stick to what you are good at ,and don't block apps that other companies aren't blocking including at&T now, and they were in on the $100,000,000 to create this app along with Tmoblie and Verizon.  I use an android because of the capapbilites that google gives you, and the apps that they offer for free or no money.  Go look in the Verizon apps and see how much you will pay.  Most that cost money come preinstalled on your phone so all you have to do is use it and you start getting charged.  This is a 3 year decision making.  I don't like that people can easily get charged for services without even knowing just because the app was installed and they used it once.  Just stay with what your good at and let the android users rightly use the google apps.  After all Google Saved your business if you really want to think about it.  If you didn't have the android OS, how many sales would you be getting?  Where would your company be.  This app was developed by Google which means it ties into everything else such as making online payments with the google card.  Blocking APPS developed by the developer of the Operating System that single handedly changed  the game, and has Made  you as a company far better off than you would have ever been had they not developed android.  Not a good Idea.  Bite the hand that feeds you.

  • Why multiple  log files are created while using transaction in berkeley db

    we are using berkeleydb java edition db base api, we have already read/write CDRFile of 9 lack rows with transaction and
    without transaction implementing secondary database concept the issues we are getting are as follows:-
    with transaction----------size of database environment 1.63gb which is due to no. of log files created each of 10 mb.
    without transaction-------size of database environment 588mb and here only one log file is created which is of 10mb. so we want to know how REASON CONCRETE CONCLUSION ..
    how log files are created and what is meant of using transaction and not using transaction in db environment and what are this db files db.001,db.002,_db.003,_db.004,__db.005 and log files like log.0000000001.....plz reply soon

    we are using berkeleydb java edition db base api, If you are seeing __db.NNN files in your environment root directory, these are environment's shared region files. And since you see these you are using Berkeley DB Core (with the Java/JNI Base API), not Berkeley DB Java Edition.
    with transaction ...
    without transaction ...First of all, do you need transactions or not? Review the documentation section called "Why transactions?" in the Berkeley DB Programmer's Reference Guide.
    without transaction-------size of database environment 588mb and here only one log file is created which is of 10mb.There should be no logs created when transactions are not used. That single log file has likely remained there from the previous transactional run.
    how log files are created and what is meant of using transaction and not using transaction in db environment and what are this db files db.001,db.002,_db.003,_db.004,__db.005 and log files like log.0000000001Have you reviewed the basic documentations references for Berkeley DB Core?
    - Berkeley DB Programmer's Reference Guide
    in particular sections: The Berkeley DB products, Shared memory regions, Chapter 11. Berkeley DB Transactional Data Store Applications, Chapter 17. The Logging Subsystem.
    - Getting Started with Berkeley DB (Java API Guide) and Getting Started with Berkeley DB Transaction Processing (Java API Guide).
    If so, you would have had the answers to these questions; the __db.NNN files are the environment shared region files needed by the environment's subsystems (transaction, locking, logging, memory pool buffer, mutexes), and the log.MMMMMMMMMM are the log files needed for recoverability and created when running with transactions.
    --Andrei                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Where to see activities, which are created for the campaign with target group

    Hi
    I have created a Communication Method in SPRO -> CRM -> Marketing -> Marketing Planning & Campaign Management -> Campaign Executtion - Define Communication Method : Activity has been configured
    Activities are not appearing after creation of campaign with target group.
    Where to see activities, which are created for the campaign with target group?
    Regards
    Hamid

    Hello,
    alternatively to check  table CRMD_ORDERADM_H directly you can use the related transactions search for the campaign:
    This should bring all activities generated by the campaign. If this is empty first check the job log of the campaign execution job again:
    This gives information if any target group members have business transactions created. If the log does not contain the required information you can debug from SM37. The business transactions (activities, leads, sales orders) are generated from function module CRM_MKTTGGRP_PROC_CREATE.
    best regards,
    Johannes

  • PO wf should not be triggred when POs are created through RFC

    Hi
    My PO wf is working fine for POs created and changed. But it is getting triggered for POs which are created by Ariba system using RFCs.And since there is no Organization structure for the user id which is used in RFC, it is throwing an error.
    Please let me know what can be done in this regard.
    Thanks
    Bhaskar

    Hi Bhaskar,
    you are telling that the reson of the error is, that the user for the RFC is on in the OM.
    So, why not put this user there, or use a different user?
    If you don't want a wf to be created by ariba.
    you can use check function modules for it, or put the logc in the first step of the flow.
    I can imagine that when a user is responsible for the event, that the workflow probably should have additional dialog steps, like control steps by other users. If however you use an automated system, you can assume that controlling the data isn't necessary, but other background processes should be executed by the flow.
    In that case do it in the WF modelling, with conditions on the initiator.
    Kind regards, Rob Dielemans
    Message was edited by: Rob Dielemans

  • What indexes are created when we check dimension as line item.

    What indexes are created when we check dimension as line item.
    and also What indexes are created when we check dimension as high cardinality.
    Where can i see that information in the system.
    Answers are highly appreciated.
    Regards
    Kunal

    Hi,
    Line item means it does not have any dimension table.
    High Cardinality means that the dimension is to have a large number of instances (that is, a high cardinality). Also, it is very important to indentify the line item dimension properly. E.g. Sales Order number, this will have the exact number of entries as the fact table entries. Hence, this can be created as a line item dimension. If you are not sure of high cardinality never select that. Activate this function when the dimension has is at least 10%- 20% the size of the fact table (in terms of the number of records). <b>In this case, B tree indices are created instead of bitmap indices.</b>. By default it is BITMAP but with high cardinality it is B-Tree indexing.
    Hope this helps.
    PB

Maybe you are looking for

  • Down Payment Invoice and A/R Invoice

    Dear Expert I have been experiencing a scenario where my client wants to create A/R down payment Invoice to their Customers. But the down payment may or may not be received before issue of the (balanced) A/R invoice and further the client sometimes w

  • Mini dvi adapter

    will the cords i bought a while back for my ipod to play photos on a tv(http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?mco=7CB C356E&nplm=M9765G%2FB) work with this?: http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleSto

  • Event structure vs case structure?

    I am developing an application that is fairly user input based... lots of boolean control buttons to do different things. In the past, I have avoided "value change" event structures, and instead went with a while loop, stacked sequence, and series of

  • Input not routing through effects when recording

    Hello, I have a strange problem with Logic 8 all of a sudden. I can no longer hear my input during recording. The input is not flowing through the channel strip effects nor is it routing over to out 1-2 during recording. Everything works fine during

  • Save member to file on Mac - w/Shockwave?

    I was using DirectXtras on the PC and Mac, and now I need a Shockwave safe way to save a cast member to a file on Macs - I'm not finding any that work in Shockave - anyone?