Travel Database

Can someone from the SJSC Team respond
I would like to recreate the Pointbase Travel database within Oracle 9i on a Sun Workstation.
I need to see how the Travel database was created, primary keys, cascade on delete, whatever. so I can recreate it in Oracle 9i.
starting the Pointbase "startconsole.bat" file shows only one database: "sample" and access to that fails because no password is available.
I imagine the key icon that shows up indicates a primary key?
what does the key icon with arrow indicate?
what is the sql syntax to use on trip.tripid, trip.personid, trip.triptypeid to get the key and key/arrow to show when for example using editRowSetQuery within the InsertUpdateDelete Example?
Thanks

If you're using creator 2EA, check out <installdir/rave2.0/startup/samples/create-Travel.sql.
I believe that file is also in the last Reef update, albeit in a different directory that I don't recall.
Otherwise, this is it (the PB version uses boolean rather than smallint ).
drop view PersonTrip ;
drop table Trip ;
drop table Person ;
drop table TripType ;
create table TripType ( TripTypeID INTEGER NOT NULL, Name VARCHAR(15), Description VARCHAR(50) ) ;
alter table TripType add constraint TripTypePK PRIMARY KEY (TripTypeID) ;
insert into TripType values( 1, 'TRNG', 'Training');
insert into TripType values( 2, 'SALES', 'Sales');
insert into TripType values( 3, 'OTHER', 'Other');
insert into TripType values( 4, 'PR/AR', 'Press and Analyst Meeting');
insert into TripType values( 5, 'OFFSITE', 'Offsite Meeting');
insert into TripType values( 6, 'CONF', 'Conference/Tradeshow');
insert into TripType values( 7, 'REM MTG', 'Remote Office Meeting');
insert into TripType values( 8, 'CUST VST', 'Customer Visit');
insert into TripType values( 9, 'RECRUIT', 'Recruiting');
insert into TripType values( 10, 'BUS DEV', 'Business Development');
create table Person ( PersonID INTEGER NOT NULL, Name VARCHAR(50), JobTitle VARCHAR(50), FrequentFlyer SMALLINT ) ;
alter table Person add constraint PersonPK PRIMARY KEY (PersonID) ;
insert into Person values (1, 'Able, Tony', 'CEO', 1) ;
insert into Person values (2, 'Black, John', 'VPO/CXO - SGMS', 1) ;
insert into Person values (3, 'Kent, Richard', 'VP', 1) ;
insert into Person values (4, 'Chen, Larry','VP/CXO - SGMS', 0) ;
insert into Person values (5, 'Donaldson, Sue', 'VP', 1) ;
create table Trip ( TripID INTEGER NOT NULL, PersonID INTEGER NOT NULL, DepDate DATE,
DepCity VARCHAR(32), DestCity VARCHAR(32), TripTypeID INTEGER NOT NULL ) ;
alter table Trip add constraint TripPK PRIMARY KEY (TripID) ;
alter table Trip add constraint TripPersonFK FOREIGN KEY (PersonID) REFERENCES
Person (PersonID) ;
alter table Trip add constraint TripTypeFK FOREIGN KEY (TripTypeID) REFERENCES
TripType (TripTypeID) ;
insert into Trip values (128, 1, '2003-06-16', 'San Francisco', 'New York', 4) ;
insert into Trip values (199, 1, '2003-09-14', 'San Francisco', 'New York', 4) ;
insert into Trip values (202, 1, '2003-10-22', 'San Francisco', 'Toronto', 4) ;
insert into Trip values (203, 1, '2003-11-23', 'San Francisco', 'Tokyo', 5) ;
insert into Trip values (367, 1, '2003-12-12', 'San Francisco', 'Chicago', 2) ;
insert into Trip values (100, 4, '2004-05-01', 'Aspen', 'San Francisco', 7) ;
insert into Trip values (159, 4, '2003-09-01', 'Aspen','Park City', 4) ;
insert into Trip values (252, 4, '2003-11-01', 'Aspen','Chicago', 4) ;
insert into Trip values (359, 4, '2004-01-26', 'Aspen','Los Angeles', 4) ;
insert into Trip values (460, 4, '2004-05-06', 'Aspen', 'San Francisco', 6) ;
insert into Trip values (200, 2, '2004-06-11', 'San Jose', 'Washington DC', 3) ;
insert into Trip values (310, 2, '2003-08-03', 'San Jose', 'Washington DC', 3) ;
insert into Trip values (333, 2, '2004-02-02', 'San Jose', 'Tokyo', 5) ;
insert into Trip values (422, 2, '2004-04-11', 'San Jose', 'Washington DC', 3) ;
insert into Trip values (455, 2, '2004-05-13', 'San Jose', 'Stockholm', 8) ;
insert into Trip values (592, 3, '2003-06-16', 'San Jose', 'Novosibirsk', 10) ;
insert into Trip values (201, 3, '2003-07-01', 'San Jose', 'Washington DC', 8) ;
insert into Trip values (590, 3, '2003-08-11', 'San Jose', 'Orlando', 6) ;
insert into Trip values (380, 3, '2003-10-23', 'San Jose', 'Washington DC', 3) ;
insert into Trip values (421, 3, '2003-11-09', 'San Jose', 'Washington DC', 3) ;
insert into Trip values (198, 5, '2004-06-11', 'San Jose', 'Grenoble', 3) ;
insert into Trip values (208, 5, '2003-06-21', 'San Jose', 'Washington DC', 2) ;
insert into Trip values (383, 5, '2003-10-23', 'San Jose', 'Grenoble', 3) ;
insert into Trip values (420, 5, '2004-06-11', 'San Jose', 'Philadelphia', 8) ;
insert into Trip values (463, 5, '2004-05-26', 'San Jose', 'Los Angeles', 6) ;
drop table NoRelation ;
create table NoRelation (Col1 INTEGER NOT NULL, Col2 VARCHAR(15) ) ;
create view PersonTrip as select tripid, name from trip, person where
trip.personid = person.personid ;

Similar Messages

  • How add new table in derby  travel database

    sir i use Sun Java Studio Creator with derby
    sir i want create new table in derby travel database but when i right click
    on table not that disable and not give and table create button
    please give me idea how i add new table in derby travel database
    thank's aamir

    Within JDeveloper the generation of entities (Persistent POJOs) from tables will overwrite exiting classes. If you have additional tables you wish to map without losing existing work you will need to create the new classes and map them manually. If you are using the native TopLink mappings there is auto-map support on individual descriptors in the structure pane to automate much of this. If you are using JPA mappings it is a bit more manual at present but the tooling is ntended to give you feedback on problems as you construct and configure your mappings.
    Doug

  • How to access the Mobile Time & Travel database tables?

    How can I access the database tables stored in SAPMobileEngine\webapps\me\WEB-INF\wwwroot\te_data\customer\database_2_0\<name_of_declared_table>  ??
    Formerly the tables were stored in ...\database as XML files and could be viewed with a standard texteditor. Now the files are stored in ...\database_2_0 as DAT files in a special format. How can I get access to the tables? (like longtext.dat or CATS_MY_TABLE_*.DAT)

    Michael,
    Are you running MTT 1.6 SR2 Patch 03?
    The database is in serialized format and you will have unserialized them by using Eclipse IDE (or NW Development Studio). This will convert it to xml format. But I think the application itself will need it to be serialized format.
    Peter

  • Error database travel doesn't exist

    Hi I currently do the tutorial about databinding
    but I could not retrieve pointbase travel db.
    Connection failed.
    I 've start pointbase. Before choose pointbase
    Studio Creator have try to connect to sqlserver.
    Any idea ?
    Thanks in advance.

    And by the way, this is a symptom that your install didn't complete quite successfully - after installing the app server, the installer then creates the travel database and deploys the travel webservice... so I suspect you may also have problems there...
    Can you start your server and deploy succsfully? If not, you may need to uninstall/reinstall so that it's all there....
    Val

  • Derby travel db not working

    Hi forum, I have a problem with the Derby server that comes with the sjsas 9, the server runs ok from the menu start->programs->Sun Microsystems->Application Server PE 9->Start JavaDB, but when I try to get a connection from NetBeans 5.5 Runtime,Databases,jdbc:derby://localhost:1527/travel, I get a message window with the text:
    The application server rejected establishment of the connection. An attempt was made to access a database, travel, which was not found.
    Can the root of problem be that I had the glassfish installed before the install of sjsas 9, and then I remove the first )deleting the folder of glassfish)? Or maybe it can be because I installed a sjsas 8 after the installation of sjsas 9 and don�t remove the last?

    derby databases will be created in derby's home dir.
    Every GF installation will have derby bundled.
    For eg. If you have created your database with GF-first-installation, and now you have started database of GF-second-installation, "travel" will be looked at GF-second-installation's derby install dir.
    Insteady, if you can find where the dir "travel" [typically in GF_INSTALL/databases], when you start the database using "asadmin start-database" provide --dbhome option with the path of "travel" database.
    http://docs.sun.com/app/docs/doc/819-3662/6n5s9hn2a?a=view
    or change the netbeans derby connection url to point absolute path of database
    eg:
    jdbc:derby:ABSOL_PATH/travel;
    Thanks,
    -Jagadish

  • Error inserting a row into a table with identity column using cfgrid on change

    I got an error on trying to insert a row into a table with identity column using cfgrid on change see below
    also i would like to use cfstoreproc instead of cfquery but which argument i need to pass and how to use it usually i use stored procedure
    update table (xxx,xxx,xxx)
    values (uu,uuu,uu)
         My component
    <!--- Edit a Media Type  --->
        <cffunction name="cfn_MediaType_Update" access="remote">
            <cfargument name="gridaction" type="string" required="yes">
            <cfargument name="gridrow" type="struct" required="yes">
            <cfargument name="gridchanged" type="struct" required="yes">
            <!--- Local variables --->
            <cfset var colname="">
            <cfset var value="">
            <!--- Process gridaction --->
            <cfswitch expression="#ARGUMENTS.gridaction#">
                <!--- Process updates --->
                <cfcase value="U">
                    <!--- Get column name and value --->
                    <cfset colname=StructKeyList(ARGUMENTS.gridchanged)>
                    <cfset value=ARGUMENTS.gridchanged[colname]>
                    <!--- Perform actual update --->
                    <cfquery datasource="#application.dsn#">
                    UPDATE SP.MediaType
                    SET #colname# = '#value#'
                    WHERE MediaTypeID = #ARGUMENTS.gridrow.MediaTypeID#
                    </cfquery>
                </cfcase>
                <!--- Process deletes --->
                <cfcase value="D">
                    <!--- Perform actual delete --->
                    <cfquery datasource="#application.dsn#">
                    update SP.MediaType
                    set Deleted=1
                    WHERE MediaTypeID = #ARGUMENTS.gridrow.MediaTypeID#
                    </cfquery>
                </cfcase>
                <cfcase value="I">
                    <!--- Get column name and value --->
                    <cfset colname=StructKeyList(ARGUMENTS.gridchanged)>
                    <cfset value=ARGUMENTS.gridchanged[colname]>
                    <!--- Perform actual update --->
                   <cfquery datasource="#application.dsn#">
                    insert into  SP.MediaType (#colname#)
                    Values ('#value#')              
                    </cfquery>
                </cfcase>
            </cfswitch>
        </cffunction>
    my table
    mediatype:
    mediatypeid primary key,identity
    mediatypename
    my code is
    <cfform method="post" name="GridExampleForm">
            <cfgrid format="html" name="grid_Tables2" pagesize="3"  selectmode="edit" width="800px" 
            delete="yes"
            insert="yes"
                  bind="cfc:sp3.testing.MediaType.cfn_MediaType_All
                                                                ({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection})"
                  onchange="cfc:sp3.testing.MediaType.cfn_MediaType_Update({cfgridaction},
                                                {cfgridrow},
                                                {cfgridchanged})">
                <cfgridcolumn name="MediaTypeID" header="ID"  display="no"/>
                <cfgridcolumn name="MediaTypeName" header="Media Type" />
            </cfgrid>
    </cfform>
    on insert I get the following error message ajax logging error message
    http: Error invoking xxxxxxx/MediaType.cfc : Element '' is undefined in a CFML structure referenced as part of an expression.
    {"gridaction":"I","gridrow":{"MEDIATYPEID":"","MEDIATYPENAME":"uuuuuu","CFGRIDROWINDEX":4} ,"gridchanged":{}}
    Thanks

    Is this with the Travel database or another database?
    If it's another database then make sure your columns
    allow nulls. To check this in the Server Navigator, expand
    your DataSource down to the column.
    Select the column and view the Is Nullable property
    in the Property Sheet
    If still no luck, check out a tutorial, like Performing Inserts, ...
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/index.jsp
    John

  • Dynamic Tables - Coordinated Drop Downs

    Hello Community
    This is my first post and i am new in all this so please forgive if any...newbiness comes out! :P
    Anyway what i wanted to ask if there is a way or a tutorial to add, appart from Coordinated Drop-Down Lists also a dynamic Table!
    What i mean by that is that the coordinate drop down lists eventually create a query to the database which actually dont know which table the user might select. So e.g. if we take the travel DB provided he could choose the trip table or another one. So how could i drop a table in the design view but somehow to bind it according to what the user has selected to the preivous drop down lists??
    I hope i am clear enough and if i am not please let me know so to explain!
    (URL to tutorials, examples, samples or whatever more then welcome)
    Thank you in advance

    hello again
    i saw that already but for example it says:
    Drag and drop a JDBC table from the servers tab, say Data Sources -> travel -> trip, on to the designer. <<<that is what i mean...that the final result now will already be connected with the table trip of the travel database!
    What if i want to use the travel database indeed but it will be up to the user which talbe (or joined table) will be displayed. Because imagine a simple query:
    " Select * from ? "
    so in this case i would like the table to filled and show everything but from the table of the database that the user will select on the run time from a drop down list!
    Can i do that somehow?

  • Javadb "table does not exist" Problem

    Hi,
    I am learning to program jsp's, please help me.
    I created a new database HelloWorld and a table named Languages in HelloWorld, i used javaDb bundled with Java System Application Server 9, java EE 5 and Netbeans 5.5.
    When I created it in netbeans, the table is shown in Databases node but while I try to get data from my Jsp it is giving me error
    org.apache.derby.client.am.SqlException: Table 'LANGUAGES' does not exist.
    I tried the example with the sample travel database and it is working but not with the database and tables I created.
    Please suggest me what I am doing wrong, My code is as follows.
    index.jsp
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>JSP demo</title>
        </head>
        <body>
             <%@ page language="java" %>
             <jsp:useBean id="db" class="beans.DbBean"/>
             <% db.openConnection("jdbc:derby://localhost:1527/HelloWorld");
              %>
                  <H1> Languages:</H1>
              <%= db.displayTable() %>
             <% db.closeConnection(); %>
          </body>
    </html>
    DbBean:
    import java.sql.*;
    public class DbBean {
        /** Creates a new instance of DbBean */
        public DbBean() {
    Connection conn;
    public void openConnection(String connect_string) throws SQLException {
       conn = DriverManager.getConnection(connect_string,"abc","abc");
    public String displayTable() throws SQLException {
    String result = "";
    Statement stmt;
    ResultSet rset;
    stmt = conn.createStatement();
    rset = stmt.executeQuery("select language_id,language_name from Languages");
    while (rset.next())
    result += rset.getString("language_name")+"<BR>";
    rset.close();
    stmt.close();
    return result;
    public void closeConnection()
    throws SQLException
    conn.close();
    error is on line
    rset = stmt.executeQuery("select language_id,language_name from Languages");thanks in advance

    please check the table 'LANGUAGES' is in which database. It may be paoosible that you are trying to access the table created in other database inside derby.

  • Iframe shortcircuits JSF Lifecycle

    I need to find out why using an <iframe> element in my jsp page under JSF (with or without a <verbatim> tag
    SHORT-CIRCUITS THE JSF LIFECYCLE?
    ie: it goes right to after renderresponse completely bypassing validation and data binding!!
    PLEASE HELP!!!

    Hi,
    The following are the steps I followed:
    1. Create a new project
    2. Drag and drop a textField
    3. In the properties sheet check the required property for the textField
    4. Drag and drop a button and an outputText
    5. Right click on the session bean in the Project Navigator and add a property named txtVal
    6. Double click on the button and in the button_action method enter the following lines of code
    getSessionBean1().setTxtVal((String)textField1.getValue());
    outputText1.setValue(getSessionBean1().getTxtVal());
    7. Click on the jsp tab for the page1.jsp and add the following lines of code inside the form tags
    <iframe align="right" height="80" src="http://www.yahoo.com" style="left: 48px; top: 264px; position: absolute" width="40%">
    <p>See our newsflashes.</p>
    </iframe>
    8. Switch to the design view of Page1.jsp
    9. Drag and drop a message list component onto Page1.jsp
    10. Drag and drop a datatable
    11. Drag and drop the PERSON table from the travel database
    12. Save and run the application
    On clicking on the button without entering a value we see that an error message " Validation Error: Value is required." is displayed by the message component. Also the rest of the components like the datatable also display tthe expected values.
    Hope this helps
    Cheers
    Giri :-)

  • Workflow report:  which FM's, tables,.... to use ?

    hi there,
    i have a user requirement which seems not that easy as i first thought:
    i have to write a z-abap which lists the following informations of 2 different ESS-workflows (travel expenses and absence)
    Name of workflow creator
    Date of workflow creation
    Name of approver
    Date of approval
    status of approval (approved/rejected,etc.....)
    workflow-specific data (travel-date for travel-workflow ESS, absence date for absence workflow ESS,etc.....)
    I know the workflow-tables SWWWIHEAD, etc.... BUT: how can i read out the approver of a workflow and also the status of approval approved/rejected,.....) in an easy way ? which table to use there for both workflows (travel expenses and absence) and maybe for other workflows in the future. and how can i read out workflow-specific content (like travel-date, etc....)
    br, Martin

    Hi,
    There are already some hints about where to find different data regarding the workflows. As a general guideline I would suggest that you try to find as much application data as possible from the actual application data tables. Just an example, get the absence approver/rejecter from the PTREQ* tables (PTREQ_HEADER contains the statuses of the leave request and who created the row (=approver), etc.). The trip status data should be possible to find also from the travel database (take a look to the transaction PR05, and then the trip history data - you should be able to find the table that contains the approval data, (PTRV* something).
    It is not always so straightforward to get the information from workflow tables. You might need to try to find the approval/rejection data from the outcomes of the work items, etc. Then when someone changes the workflow, you might need to remember to do the changes to your report, etc. Sometimes it might even be necessary to do changes to the workflow in order to store the important log data (save approver to Z-table or at least to a container element, etc).
    Regards,
    Karri

  • Any clue?

    How can I use Person and Trip tables in Travel database acrossing two pages. In my Page1.jsp,PersonRowset is bound to dropdown list and TripRowset is bound to DataTable . In the next page, I want to show more colums of the Trip table response to the selected person ,and have go back button to page1.But, my trip information in second page always result in displaying the trip infor. of my first choice of selctions from the dropdownlist in page1.And when I go back to page1, the dropdwon list only show first person' s name. It should show my selected person. Any clue?Thank you!

    Hi,
    One possible solution is to store the value of the person's name in a session bean property. The session bean property can be made us of for showing the selected person's name in the dropdown list. The code to be used would look something like:
    dropdown1.setSubmittedValue(this.getSessionBean1.getSelectedName);
    Note: selectedName is the name of the session bean property
    I hope this helps
    Cheers
    Giri :-)
    Creator Team

  • Need help getting DataProvider cursor methods to work in JSC

    Hi, I'm a newbie to Creator as well as JSF. I'm using JSC Update 1. I've
    worked through a couple of the beginning tutorials including "Performing
    Inserts, Updates, and Deletes" without a problem. I'm now trying to
    craft a simple jsf database form application on my own using the sample
    travel database and I'm stuck!
    I put text fields on the form corresponding to each of the 4 fields in
    the PERSON table and bound them to the fields in the table which, on
    examination, resulted in a CachedRowSetDataProvider (personDataProvider)
    in Page1 and a CachedRowSetXImpl (personRowSet) in SessionBean1. I then put 4 buttons on the form (First, Previous, Next, Last) for record
    navigation. Here is the code I put in the first two actions (the others are
    the same except for the cursor methods):
    public String btn_firstrec_action() {
    try {
    personDataProvider.cursorFirst();
    } catch (Exception e){
    error("cursorFirst failed: " + e.getMessage());
    log("cursorFirst failed " , e);
    return null;
    public String btn_next_action() {
    try {
    personDataProvider.cursorNext();
    } catch (Exception e){
    error("cursorNext failed: "+ e.getMessage() );
    log("cursorNext failed " , e);
    return null;
    etc.
    When I run the application using the bundled app server I get strange
    behavior when I click the navigation buttons. There are 6 records in the
    table. The application opens up displaying the data for the first
    record. Clicking "Next" takes me to record 2--so far so good. However,
    with repeated clicks on "Next", "Previous", "First" the data displayed in
    the form remains the same. If I click "Last" (personDataProvider.cursorLast(); ), the data from record 6 is rendered OK!
    I worked a little in the debugger. I added a cursorChanging method and
    put a break point in there. Then I watched the index attributes for rk1
    an rk2 as I continued the execution. I had to hit Alt+F5 (Continue)
    2 to 4 times on each button click depending on the action--4X
    with "Next" and "Previous". For each button click the index values would
    change at first to what logically seemed the correct values but
    then snap back to 0 or 1 as I kept continuing depending on the sequence--
    wierd to me.
    I also tried configuring all the form fields in a virtual form with
    "Participate" on for the text fields and "Submit" on for the buttons
    with the same result (I was really "shooting in the dark" here!).
    I'm obviously missing something here--this shouldn't be this difficult!
    I have scanned through a lot of the excellent tutorials, articles and forum posts as well as some of the sample apps but haven't as yet found a similar example of using the DataProvider cursor methods which seems pretty basic to me but, I could have easily missed seeing what I needed.
    Any help would be greatly appreciated--I'm really counting on this tool
    to get an overdue project going so I'm somewhat desperate.
    Thanks, Len Sisson

    This happened to me as well the first time I used the JSC (and I was a newbie in web). I believe it is because everytime you hit the button, actually the sequence of program will back to init(), button_action(), prerender(), destroy(). So, try to remember the last state of the cursor position using session variable. And then you put a code in the init() to move back to the last cursor position.
    Check the sample program provided by JSC (SinglePageCrudForm). This sample demonstrate how to put a code in init(), destroy() in order to 'remember' the last position.
    hope that helps
    Message was edited by:
    discusfish

  • Reposted: driver odbc

    i found an error when try to run the web application, the error appear
    like this :
    Cannot load JDBC driver class 'org.apache.derby.jdbc.ClientDriver
    java.lang.ClassNotFoundException: org.apache.derby.jdbc.ClientDriver
    i've already add the driver, connection and view the data in visual designer (succeded) using travel database. in my opinion, it is likely that i'm not add the class driver to ide yet.
    where i must put that driver class in ide? is it the driver class automatically load and added when i'm set the driver and connection before ? or there are couples step that i pass....
    thanks a lot for the answers...

    darma,
    Just the basic facts. (Can you show me where it hurts?)
    1. Which IDE are you using.
    2. Which Application Server are you using?
    3. Is derby.jar (or whatever) in your classpath, and does your IDE &/or AppSvr look there?
    ... and you might read http://www.catb.org/~esr/faqs/smart-questions.html before posting again.
    keith.

  • User uploads

    We just downloaded the Creator and are thrilled with the concept. We find your sample applications and those in the FieldGuide to be too basic. We want to develop more complex sample applications that we can use to train our internal staff. We plan to use the Travel database to create our sample apllications since it comes with the Creator download.
    We would like to share these with other developers in this forum. Is there a way for developers to upload sample applications for other developers to use?

    This is probably the best place to share your experience: http://developers.sun.com/prodtech/javatools/jscreator/community/creatorheroes.html
    Also, have a look at the newly released App Model example:
    http://developers.sun.com/prodtech/javatools/jscreator/reference/codesamples/sampleapps.html
    -Alexis

  • Access Pointbase

    How do I get to create new "instances" tables, etc. Also, how to modify existing pointbase tables via sql access..
    Suppose I want to add tables to the TRAVEL database that comes with Creator, How do I do this?
    running Creator/Pointbase on XP
    Thanks...

    Hi,
    The Pointbase console can be started by using the executable startconsole.bat which is located in the folder:
    <intall dir>\SunAppServer8\pointbase\tools\serveroption
    Hope this helps
    Cheers
    Giri :-)
    Creator Team

Maybe you are looking for

  • How can I get alerts from SharePoint based on a date that exists in a list?

    I have a list that contains renewal records.  One of the fields in each record is "Renewal Date".  I would like to have SharePoint send an alert when it is 1 month prior to that date.  Can anyone help me do so? Chas Roberts

  • Python-numpy broken

    Ok, my first pacman upgrade error ever I haven't been able to solve by a search in this forum, I'm afraid it might not be so straight forward. Last night doing a pacman -Syu gave me an error that said gcc-fortran was missing, found this http://bbs.ar

  • BugCheck 0x0000007a Sudden restart

    Hi, Today Moring while Checking Server 2008R2 found an error Message which Shared below. The computer has rebooted from a bugcheck.  The bugcheck was: 0x0000007a (0xfffff6fc400083d0, 0xffffffffc000009d, 0x000000016ab0c860, 0xfffff8800107a210). A dump

  • ORA-03115 when connect to Oracle8.0.5.1 on Linux

    My JDeveloper with JDBC(upgraded today) connects OK to Oracle8 on NT and SUN. But there is error with Oracle8 for Linux. What's wrong? null

  • SecureSocket with client authentification (AIR) ?

    Hi, I'm trying to establish a secured TCP connection with a symmetric TLS authentication (two way authentication). I can connect with success to the server with SecureSocket if the client authentification is disabled but I don't know where to set my