I am 11gR2 user.... is this query only works on 11g version oracle or it Could also works lower versions?

I discovered that the password is no longer displayed in DBA_USERS in 11g.
11G version:
select username,password from dba_users where username='SCOTT';
USERNAME PASSWORD
SCOTT
Can I use below query to see password and user_name in 11G also lower versions?...
select name,password from sys.user$ where name='SCOTT';
NAME  PASSWORD
SCOTT F894844C34402B67

DBA_USERS is a view and password must hide in base table but can't run out of database.
SQL> select USERNAME, PASSWORD  
from dba_users where username=
  2  'SCOTT' ;
USERNAME                  
PASSWORD
SCOTT
  1* select dbms_metadata.get_ddl('USER', 'SCOTT') from dual
SQL> /
DBMS_METADATA.GET_DDL('USER','SCOTT')
   CREATE USER "SCOTT" IDENTIFIED BY VALUES 'S:CA2276DABF0B4FA60720CA77EEEE0E0B875CC6E519058591E7179F645673;F894844C34402B67'
      DEFAULT TABLESPACE "USERS"
      TEMPORARY TABLESPACE "TEMP"

Similar Messages

  • I have CS6 and CC installed on my mac when I'm using CS6 and use bridge CC activates how can I set this to only work on one and not the other

    I have CS6 and CC installed on my mac when I'm using CS6 and use bridge CC activates how can I set this to only work on one and not the other

    If you want Bridge CS6 to open when using Photoshop CS6, you must quit Bridge CC.
    Then File menu > Browse in Bridge will bring up Bridge CS6.
    If Bridge CC is already open, The File > Browse in Bridge for Photoshop CS6 will use Bridge CC and Bridge CS6 will not open.
    I hope that's the answer you were looking for.
    Gene

  • Query only works on the first word of the managed property

    I have several managed properties that are not returning query results as expected, they are returning results only if the term queried matches
    the first word in the property, any other query returns no results.
    Scenario:
    filename = "Sample Excel File.xlsx" (OOTB property)
    FooOwner = "Martin Zima"
    FooSiteName = "Test Site"
    If I query filename:Sample, filename:File, filename:Excel (or any combination) they all works as expected. However, if I query "FooOwner:Martin"
    it works, but if I query FooOwner:Martin Zima it fails, and FooOwner:Zima also fails. Similarly, if I search for FooSiteName:Site it fails (only CPSiteName:Test works). Everything seems ok in the crawled property and managed property. Can anyone please help?

    Hi Martin,
    I tried in my envrionment, author:"Rebecca Tu" and
    author:Rebecca Tu returned the same result. Please try author:* and see if it will return all the results. If there is no result, then we should check the DisplayAuthor property in Search schema.
    In the default search result page, there should be Author refiner in the Refinement. You could use the default one as below:
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How can I get this query to work?

    HI
    SELECT  TOP 200  [word] ,COUNT(word) AS count
              FROM [COMMENT_WORDS]
              where word NOT in (SELECT wordText FROM word)
                GROUP BY word
                ORDER BY COUNT desc
    gives me this error:
    Msg 468, Level 16, State 9, Line 1
    Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation.
    please help

    Thanks I changed the count name but I am still getting
    Msg 468, Level 16, State 9, Line 1
    Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation.
    I also went into the word database and ran
        ALTER DATABASE [word] COLLATE
        Latin1_General_CI_AS
    and now both databases have the same colaltion but I still get the error:
    Msg 468, Level 16, State 9, Line 1
    Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation.
    I am using ms sql 2005

  • Why does this script only work on mobile devices?

    Is there any reason this conditional statement would work on mobile devices and not in a desktop browser i.e. Chrome, Safari? I am using it in a scroll activated project to trigger a symbol to play forwards or backwards depending on where the playhead is in the symbol. Works great on an iPad but not Chrome, Safari on my desktop.
    if (sym.getSymbol("icons_sym").getPosition("back") ) {
    sym.getSymbol("icons_sym").playReverse();
    else {
       sym.getSymbol("icons_sym").play("front");
    Thanks,
    Mark

    Ivan
    Sorry, my original posting was complete rubbish - I'll try and find the right answer...
    HTH
    Regards Nigel
    Message was edited by:
    nthomas

  • Y this query is slow & y it is talking no Indexes

    hi i had a problem with this query it is taking lot of time to execute and it is not using any index.table access full is there in the execution plan
    SELECT S_PARTY,S_CO,S_TYPE,SUM( S_QTY ) FROM SYSADM.SAUDA WHERE ( S_SET = 2008220 OR (S_PARTY NOT IN ( 'SLC','0','999','01','03','1','0C','MSX' ) ) AND S_SET < 2008220 )
    GROUP BY S_CO, S_PARTY,S_TYPE;
    there is an index created for s_party
    can any one design me this query which can compile both in oracle and in sqltalk

    padders wrote:
    When you use a NOT operator the CBO assumes that you are fetching a large portion of data and it goes for a Full Table Scan.Erm, nope.
    You will never get an Index range scan with the use of a NOT operator.Nope.
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> SET AUTOTRACE ON EXPLAIN;
    SQL> SELECT a.empno
    2  FROM   emps a
    3  WHERE  a.empno NOT IN (SELECT b.empno
    4                         FROM   emps b);
    no rows selected
    Execution Plan
    Plan hash value: 1580617835
    | Id  | Operation          | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |         |     1 |     8 |     1   (0)| 00:00:01 |
    |   1 |  NESTED LOOPS ANTI |         |     1 |     8 |     1   (0)| 00:00:01 |
    |   2 |   INDEX FULL SCAN  | PK_EMPS |    14 |    56 |     1   (0)| 00:00:01 |
    |*  3 |   INDEX UNIQUE SCAN| PK_EMPS |    14 |    56 |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    3 - access("A"."EMPNO"="B"."EMPNO")
    SQL>
    What have you proved here, In my opinion NOTHING ;)
    You have EMPNO as primary key correct? And in your query you are just selecting EMPNO. So oracle will treat your INDEX as a skinny version of your table and scan through the table. And that's why you get a INDEX FULL SCAN.
    But what did i say
    > You will never get an Index range scan with the use of a NOT operator.
    In your case just select one more column other than EMPNO and see. Your query will go for a FULL TABLE SCAN.
    Here is a small example.
    I am using the EMP table from SCOTT schema. I have just added one more row to it.
    SQL> select * from emp
      2  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    10
             1 karthick   se                 0 17-FEB-09        100                     0
    15 rows selected.I have created a PRIMARY KEY on EMPNO
    SQL> alter table emp add constraint emp_pk primary key(empno)
      2  /
    Table altered.
    SQL> exec dbms_stats.gather_table_stats(user,'EMP',cascade=>true)
    PL/SQL procedure successfully completed.This query below will exclude only one row from the EMP table. I will use this query in NOT IN condition So that my main query has to select only one row.
    SQL> select * from emp where sal > 100
      2  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    10
    14 rows selected.So now first i select only the EMPNO as you did and lets see what happens.
    SQL> select empno
      2    from emp
      3   where empno not in (select empno from emp where sal > 100)
      4  /
         EMPNO
             1
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=1 Bytes=12)
       1    0   NESTED LOOPS (ANTI) (Cost=3 Card=1 Bytes=12)
       2    1     INDEX (FULL SCAN) OF 'EMP_PK' (INDEX (UNIQUE)) (Cost=1 Card=15 Bytes=60)
       3    1     TABLE ACCESS (BY INDEX ROWID) OF 'EMP' (TABLE) (Cost=1 Card=13 Bytes=104)
       4    3       INDEX (UNIQUE SCAN) OF 'EMP_PK' (INDEX (UNIQUE)) (Cost=0 Card=1)See it considers the INDEX EMP_PK as a skinny version of the table EMP and just scans through the index. So you get a FULL SCAN.
    Now lets select more column.
    SQL> select *
      2    from emp
      3   where empno not in (select empno from emp where sal > 100)
      4  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
             1 karthick   se                 0 17-FEB-09        100                     0
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=7 Card=1 Bytes=45)
       1    0   NESTED LOOPS (ANTI) (Cost=7 Card=1 Bytes=45)
       2    1     TABLE ACCESS (FULL) OF 'EMP' (TABLE) (Cost=5 Card=15 Bytes=555)
       3    1     TABLE ACCESS (BY INDEX ROWID) OF 'EMP' (TABLE) (Cost=1 Card=13 Bytes=104)
       4    3       INDEX (UNIQUE SCAN) OF 'EMP_PK' (INDEX (UNIQUE)) (Cost=0 Card=1)Bingo!!!! Can you see its a FULL TABLE SCAN. If i just do a direct filtering for EMPNO 1 then you can see a nice INDEX UNIQUE SCAN.
    SQL> select *
      2    from emp
      3   where empno = 1
      4  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
             1 karthick   se                 0 17-FEB-09        100                     0
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=1 Card=1 Bytes=37)
       1    0   TABLE ACCESS (BY INDEX ROWID) OF 'EMP' (TABLE) (Cost=1 Card=1 Bytes=37)
       2    1     INDEX (UNIQUE SCAN) OF 'EMP_PK' (INDEX (UNIQUE)) (Cost=0 Card=1)   Even if i try to HINT oracle to use index it goes for a INDEX FULL SCAN only.
    SQL> select /*+ INDEX(EMP EMP_PK) */ *
      2    from emp
      3   where empno not in (select empno from emp where sal > 100)
      4  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
             1 karthick   se                 0 17-FEB-09        100                     0
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=5 Card=1 Bytes=45)
       1    0   NESTED LOOPS (ANTI) (Cost=5 Card=1 Bytes=45)
       2    1     TABLE ACCESS (BY INDEX ROWID) OF 'EMP' (TABLE) (Cost=3 Card=15 Bytes=555)
       3    2       INDEX (FULL SCAN) OF 'EMP_PK' (INDEX (UNIQUE)) (Cost=1 Card=15)
       4    1     TABLE ACCESS (BY INDEX ROWID) OF 'EMP' (TABLE) (Cost=1 Card=13 Bytes=104)
       5    4       INDEX (UNIQUE SCAN) OF 'EMP_PK' (INDEX (UNIQUE)) (Cost=0 Card=1)   So i will modify my phrase and say
    With NOT operator INDEX RANGE SCAN or INDEX UNIQUE SCAN is NEVER an option.
    Thanks,
    Karthick.

  • Synchronization only works with Administrator user

    I've been using Blackberry Desktop Software for about 18 months to synchronize organizer data held in Microsoft Outlook 2010, under Windows XP Professional SP3, via a USB connection.
    I recently upgraded the BB desktop to v7.1.0 B42. In order to get a functional installation, I needed to remove the previous version and all associated data, and reinstall from scratch. After this, synchronization only works when the Windows account has Administrator privileges. This is true for both USB and Bluetooth connection.
    Has anyone else had this problem?

    I believe I do have it setup for all users - the printer shows up in "print setup utility" for the other accounts. When I get home I'll go ahead and reinstall the Stylus C86 driver.
    Since I'm at work, I attempted to print to a network printer I also have installed - I get the same error when I print from the other admin account (not mine) or the managed user account.
    Here's another tidbit: From the other admin account I navigated to the CUPS interface (127.0.0.1:631) and was able to successfully print a test page from there.
    Could this be some kind of user permission issue?

  • Calling another form in query only mode

    Dear all,
    Please clarify me which parameters to use while calling another form in query only mode in
    fnd_function.execute.
    Regards,
    Kiran

    Hi,
    According to standard doc:
    When you define a form function in the Form Functions window or call an existing form function using FND_FUNCTION.EXECUTE or
    APP_NAVIGATE.EXECUTE, you can add the string:
    QUERY_ONLY=YES
    to the string in the Parameters field or in the arguments string (using the other_params argument). This argument causes the form to be
    called in query–only mode. The FND_FUNCTION.EXECUTE procedure (which is also used by the Oracle Application Object Library
    Navigator) sets the QUERY_ONLY flag that sets all database blocks to non–insertable, non–updatable, and non–deletable.
    Hope it helps.

  • Performance issue with this query.

    Hi Experts,
    This query is fetching 500 records.
    SELECT
    RECIPIENT_ID ,FAX_STATUS
    FROM
    FAX_STAGE WHERE LOWER(FAX_STATUS) like 'moved to%'
    Execution Plan
    | Id  | Operation                   | Name                | Rows  | Bytes | Cost (%CPU)|
    |   0 | SELECT STATEMENT            |                     |   159K|    10M|  2170   (1)|
    |   1 |  TABLE ACCESS BY INDEX ROWID| FAX_STAGE           |   159K|    10M|  2170   (1)|
    |   2 |   INDEX RANGE SCAN          | INDX_FAX_STATUS_RAM | 28786 |       |   123   (0)|
    Note
       - 'PLAN_TABLE' is old version
    Statistics
              1  recursive calls
              0  db block gets
             21  consistent gets
              0  physical reads
              0  redo size
            937  bytes sent via SQL*Net to client
            375  bytes received via SQL*Net from client
              3  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
             19  rows processed
    Total number of records in the table.
    SELECT COUNT(*) FROM FAX_STAGE--3679418
    Distinct reccords are low for this column.
    SELECT DISTINCT FAX_STATUS FROM FAX_STAGE;
    Completed
    BROKEN
    Broken - New
    moved to - America
    MOVED to - Australia
    Moved to Canada and australia
    Functional based indexe on FAX_STAGE(LOWER(FAX_STATUS))
    stats are upto date.
    Still the cost is high
    How to improve the performance of this query.
    Please help me.
    Thanks in advance.

    With no heavy activity on your fax_stage table a bitmap index might do better - see  CREATE INDEX
    I would try FTS (Full Table Scan) first as 6 vs. 3679418 is low cardinality for sure so using an index is not very helpful in this case (maybe too much Exadata oriented)
    There's a lot of web pages where you can read: full table scans are not always evil and indexes are not always good or vice versa Ask Tom &amp;quot;How to avoid the full table scan&amp;quot;
    Regards
    Etbin

  • Key date variable only works for i_step = 1?

    Hi, I'm working with the query designer. I need to change the key date of a query before and after the user input.
    Using the debugging on transaction rsrt I found out that key date of the query only works for i_step = 1.
    With i_step = 2 I never get this variable.
    After the popup I can only change the date manually.
    I couldn't find any documentation about this specific subject.
    Can anyone confirm/ help?
    Thanks,
    Cristina

    you can go thru the Article at [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d09d4588-3832-2c10-e185-f778d9dbea85?quicklink=index&overridelayout=true]
    with I_STEP = 1
    the enhancement call takes place before varaible entry. so this can be used to populate variables with default values
    with I_STEP = 2
    called after the processing of the variable pop-up.

  • Can't get query to work.  table alias in subquery in FROM clause

    How can I rearrange this query to work?
    SELECT
                               TO_CHAR(dt.date_time, 'YYYY-MM-DD') start_date,
                                       (SELECT COUNT(*) FROM
                                            (SELECT DISTINCT a.non_asp, a.start_time, a.end_time
                                                  FROM appointments a
                      WHERE  a.start_time >= dt.date_time AND a.start_time < dt.date_time + 1
                                       ) num_overlap
                             FROM
                                  table(times_pkg.between_times(TO_DATE('2010-05-30'),
                                             TO_DATE('2010-07-03'), 60*24, 'Y')) dtbetween_times is a table function that returns times at given intervals.
    I am trying to get a count of distinct (non_asp, start_time, end_time) sets that fall on each day.
    However, it doesn't recognize dt.date_time in the FROM clause.

    Hi,
    A sub-query can be correlated only to its immediate parent. You're trying the correlate the SELECT DISTINCT sub-query to its grandparent.
    You can re-write the sub-query as a join, like this:
    SELECT  TO_CHAR(dt.date_time, 'YYYY-MM-DD') start_date,
         a.num_overlap
    FROM     table ( times_pkg.between_times ( TO_DATE('2010-05-30'),
                               TO_DATE('2010-07-03'),
                               60*24,
                               'Y'
               ) dt
    JOIN    (
           SELECT    start_time,
                    end_time,
                  COUNT (DISTINCT non_asp)     AS num_overlap
           FROM         appointments
         )  a         ON  a.start_time         >= dt.date_time
                  AND a.start_time         < dt.date_time + 1
    ;You could also eliminate the extra level between the SELECT DISTINCT sub-query and the main query by using SELECT (DISTINCT ...).

  • Query with IN and MINUS operator (Oracle 10g)

    Hi,
    This query will work as per my requiements, my database is 10g.
    eg. Emp_M has all the Employee details, I want to fetch the details of employees from Emp_M table, who are presenet in Emp_GradeA but not in Emp_Bonus table.
    select * from Emp_M where Emp_ID in(
    (select Emp_ID from Emp_GradeA)
    MINUS
    (select Emp_ID from Emp_Bonus))
    I read in Oracle 8 or 8i books , IN has more priority than MINUS, so
    select * from Emp_M where Emp_ID in (
    (select Emp_ID from Emp_GradeA)
    will work first and then the remainin part. But I need the other way, first apply MINUS and then IN.
    Thanks in advance.
    Rizly

    Your original query should work fine, because you are using parenthesis to tell which part of the query get's executed first.
    Did you try running it in 8?

  • Control-F2 "Move Focus to Menu Bar" only works occasionally

    I don't want to use my trackpad too much due to a strain injury, hence I use the Control F2 "Move Focus to Menu Bar" a lot.
    However this feature only works occasionally, it can work for hours and then suddenly stop working, sometimes I can fix in the Keyboard Shortcuts pref pane by unchecking and checking the "Move Focus to Menu Bar" checkbox, at other times it takes a restart of the system.
    I've been a big Apple fan-boy since OS 9, and I always marvel at the cool features in OSX, this is the first time I have a Windows-esque experience with the OSX UI
    I've also posted the above on the Apple Stackexchange, but nobody knows how to fix this.

    I too prefer to use the keyboard over mouse/trackpad. Being a switcher from Windows the default keyboard shortcut to "Move focus to the menu bar" of ^F2 (ctrl+F2) was just too awkward a combination for me, and so I redefined the shortcut to be ⌘-space (cmd+space) which is much closer to what I'd been used to in Windows (Alt+space).
    This has worked most of the time, from OSX 10.3 in 2004 right up to this weekend in 2011, using 10.6 whereas it now fails most of the time.
    What has happened to cause this turnaround? In trying to discover what I'd done "wrong", I noticed that for the first time this weekend I'd run Voice Over (the OS X app). And probably by no coincidence, now, I can only successfully execute my keyboard shortcut to "Move focus to the menu bar" during the introductory announcement of Voice Over: "Welcome to Voice Over. Voice Over speaks descriptions of items on the screen and can be used to control the computer using only your keyboard. If you already know how to use Voice Over press the V key now. If you want to learn how to use Voice Over press the space key now". Hence, I have about twenty seconds of available time to use my ⌘-space (cmd+space) shortcut.
    I can achieve a working shortcut by reverting away from my ⌘-space (cmd+space) shortcut, and restoring the default ^F2 (ctrl+F2), or some other different shortcut such as ⌘-, (cmd+comma).
    So, I wonder, if my experience adds anything to the [already slightly stale] discussion?

  • Query problem in jdeveloper alpha version.

    Hi,
    We are using the JDeveloper 11g relese 1 with ADF and EJB3.0.
    If we write a query in SessionManager bean like
    atcAsmtTstInstrList = em.createQuery("select e from AtcAsmtTst e where lower(trim(e.aatAsmtTstName)) like :assessmentTestName").setParameter("assessmentTestName",
    assessmentTestName).getResultList();
    i am getting the following error.
    java.lang.IllegalArgumentException: An exception occurred while creating a query in EntityManager
         at org.eclipse.persistence.internal.jpa.EntityManagerImpl.createQuery(EntityManagerImpl.java:742)
    if i remove the trim it is working properly.
    Can any one tell me the why that query is not working. This query is working fine in JDeveloper11g preview1
    Regards,
    NIRANJAN REDDY.

    Could you include the complete exception stack trace, and include the version of TopLink/EclipseLink you are using in both (the version is printed when you login).
    James : http://www.eclipselink.org

  • Using a plugin that only works with CS3 (how to downgrade CS4 to CS3)

    I work for a company that sells HP Indigo Presses
    HP have produced a plugin called Smartstream Designer which is used to create varible data jobs for the press
    Unfortunately at the moment, this plugin only works with Indesign CS3
    I have a number of customers who have recently purchased new Apple macintosh computers and the latest version of Indesign (ie CS4)
    (1) Is there any way for them to downgrade their copy of Indesign so they can use this plugin
    At some time in the future the plugin will be updated to work with CS4 and when that happens they will need to upgrade
    (2) will there be any problem performing this upgrade at a later date?
    thanks for your help

    The only way to downgrade would be to find a CS3 license on the open market, an iffy proposition as authorized resellers no longer have older versions available. The CS4 license would still be fine in the future.
    Peter

Maybe you are looking for

  • How to get all the Record Groups?

    in the form i had created a record group. let us say they are:   RG_APPR_TYPE_CDE_LIST   RG_DRV_APPR_TYPE_CDE_LIST   RG_PROJ_MODE_CDE_LIST   RG_DRV_PROJ_MODE_CDE_LIST   RG_PROJ_STATUS_CDE_LIST   RG_DRV_PROJ_STATUS_CDE_LIST   RG_ORG_SUB_TYPE_CDE_LIST

  • Using Apple TV with external hard-drive and Time Capsule

    I am trying to figure out the best way to stream movies stored on an external hard-drive. At the moment, I have my hard-drive connected to my time capsule via USB, and am streaming them through iTunes and Apple TV. However, for this to work, I have t

  • Flash does not appear on site when uploaded to server

    I have created a Flash slide show and inserted it into Dereamweaver, I can test it to a browser and everything is beautiful BUT when I upload the Dreamweaver file to the server the area where the Flash was is blank - nothing is there. Any ideas as to

  • How to put Avantgo content into SD card of Palm T3

    I have a Palm T3. I have been using Mark/Space v4 to regularly sync my T3 with Avantgo. I have an 8MB Avantgo account. I am running out of internal memory. I tried to use Internet Sharing feature of Mark/Space to sync directly from Avantgo while my T

  • Hide toolbar using about:config

    Hello. i want to automate this process. i want to hide the menu bar, bookmarks bat and navigation toolbar using about:config or some thing similar. i know i can just right click on the and untick them. but i need to do this automaticly user abour:con