Forum: Oracle Jul 27th, 2009 |
| Replies: 2 Views: 562 Take an export of the schema and import it into yours. |
Forum: Oracle Jul 27th, 2009 |
| Replies: 2 Views: 1,146 Hi
At the command line you can type
sqlplus /nolog
SQLPLUS> connect sys/password as sysdba
Hope it helps. |
Forum: Oracle Jun 8th, 2009 |
| Replies: 8 Views: 2,751 Er guys, SqlPlus 3.3.4.0.0? Isn't this from the days of Oracle 7?
I would think we would need to know more about your config before we could really help!
client / server, versions of oracle and... |
Forum: Oracle Jun 8th, 2009 |
| Replies: 4 Views: 1,545 I'm no PL/SQL expert but have you tried a ; at the end of line 2?
VARIABLE emp_salary NUMBER;
Might help. |
Forum: Oracle Mar 2nd, 2009 |
| Replies: 4 Views: 3,219 Hi
I guess when you performed the install you created a database? If not then use the Database Configuration Assistant to create the database.
If you did create a database at installation time... |
Forum: Oracle Mar 2nd, 2009 |
| Replies: 3 Views: 605 Delete allows you to rollback or undo your transaction. Truncate doesn't use the rollbacks and the data is gone. Truncate should be quicker than delete if you are deleting all records in a table.
... |
Forum: Windows NT / 2000 / XP Mar 2nd, 2009 |
| Replies: 8 Views: 7,787 Hi Mikey
Thanks for the tip my RDP now works without any problem. I had trouble finding the "mstsc.exe.mui" and "mstscax.dll.mui" files but it turned out that they were already in the en-US... |
Forum: Oracle Feb 10th, 2009 |
| Replies: 4 Views: 2,556 Hi
This could be connected to the version of Discoverer that you're using as there isn't much Oracle software that's certified to work with Windows Vista.
I need to know what version of... |
Forum: Oracle Dec 24th, 2008 |
| Replies: 12 Views: 4,083 |
Forum: Oracle Dec 24th, 2008 |
| Replies: 12 Views: 4,083 Hi
Saw this on the web, might be worth contacting Progressive. Also you could write to Quantix, Xynomix and Teamsolve. These companies all have Oracle consultants, support desks etc. Who knows... |
Forum: Oracle Dec 24th, 2008 |
| Replies: 2 Views: 1,274 Hi
At the command line try something like this
c:\> exp system/manager file=myfile.dmp full=y buffer=20000000 log=exp.log
This will take a full export of the database (assuming system... |
Forum: Oracle Dec 24th, 2008 |
| Replies: 4 Views: 1,490 Hi
Your script should update the record assuming the ID and name exist. Try a commit after the update to save the change.
UPDATE table_one
set ID=replace(ID,'&ID','&ID')
where Name='&Name';... |
Forum: Oracle Dec 24th, 2008 |
| Replies: 12 Views: 4,083 Hi
If you have 1.5 years experience then I would have thought that would have been enough to get a job as a junior DBA! If you can't get a job then why not download the latest version of Oracle... |
Forum: Oracle Dec 24th, 2008 |
| Replies: 2 Views: 1,065 Hi
Check out the link below, it may help you out.
http://download.oracle.com/docs/html/B10268_01/uccalc.htm#1006246
Merry Christmas
Alistair |
Forum: Oracle Dec 24th, 2008 |
| Replies: 9 Views: 10,267 Forgot to mention that in 8i (assuming that you've created a database after installing the binaries) the default passwords are
SYSTEM / MANAGER
SYS / CHANGE_ON_INSTALL
In 9i you are prompted... |
Forum: Oracle Dec 24th, 2008 |
| Replies: 3 Views: 2,594 The following SELECT statement will find and display all duplicate rows
in a table, except the row with the maximum ROWID. The example uses the
dept table:
SELECT * FROM dept a
WHERE... |
Forum: Oracle Dec 24th, 2008 |
| Replies: 2 Views: 3,163 To access the help utility type the following at the command line
C:\> exp hep=y
or
C:\> imp help=y
All the commands you need are there. |
Forum: Windows NT / 2000 / XP Nov 6th, 2008 |
| Replies: 8 Views: 7,787 Hi
I'm running Windows XP Pro. SP3. RDP used to work fine but following the SP3 patch (I think) I noticed that the RDP icon had changed in appearence. When I try and use Remote Desktop it... |
Forum: Oracle Nov 6th, 2008 |
| Replies: 2 Views: 1,101 Sounds like a good idea to me. Once you have created the lookuptables in this schema you can simply grant select on the table to the other application schemas. It can then be referenced by select *... |
Forum: Oracle Nov 6th, 2008 |
| Replies: 4 Views: 2,556 I believe in Discoverer Administrator you can restrict the privileges of users so they can't change your report. If they make a change they have to save it under a new name. Might be worth looking... |
Forum: Oracle May 22nd, 2008 |
| Replies: 2 Views: 2,320 Hi
If you drop a table the index will also be dropped. The trigger and synonym will still exist and if you want to get rid of them you will need to drop these objects as well.
Alistair |
Forum: Oracle May 7th, 2008 |
| Replies: 7 Views: 2,545 Yes, it would. It shows that the listener is failing. Can you post the contents of the listener, tnsnames and sqlnet.ora files or email them to me? I will have a look at them.
I will also need... |
Forum: Oracle May 7th, 2008 |
| Replies: 7 Views: 2,545 Okay, go to the oracle_home\network\admin directory and check that you have a listener.ora file and tnsnames.ora file. If not then use the Net Manager utility to configure the listener and start it... |
Forum: Oracle May 7th, 2008 |
| Replies: 9 Views: 10,267 Have you created a database? If so you would have specified the SYS and SYSTEM passwords. If you haven't done this bit then run the Database Configuration Assistant to help you create a database. If... |
Forum: Oracle May 7th, 2008 |
| Replies: 4 Views: 2,132 Have you thought about using Log Miner to view the transactions? It may give you what you need.
Alistair |
Forum: Oracle May 7th, 2008 |
| Replies: 7 Views: 2,545 Things to check:
More than one installation of oracle on the server or more than one oracle_home. If so you will have multiple tnsnames.ora files. If this is not the case then try setting... |
Forum: Oracle Jan 9th, 2007 |
| Replies: 5 Views: 2,246 Or use something like this
select sum(decode(fk_incm_id,'1003',amount, 0))+sum(decode(fk_incm_id,'1004',amount, 0))
-sum(decode(fk_incm_id,'1001',amount, 0))+sum(decode(fk_incm_id,'1002',amount,... |
Forum: Oracle Jan 9th, 2007 |
| Replies: 5 Views: 2,246 I do understand the problem. Is it possible to use pl/sql in a derived field to make the total?
Alistair |
Forum: Oracle Jan 4th, 2007 |
| Replies: 5 Views: 2,246 My last reply wasn't very clear. If you can't have income and expenditure in different columns then try creating a view for income and one for expense. A simple join on the views would give you the... |
Forum: Oracle Jan 4th, 2007 |
| Replies: 5 Views: 2,246 Do you have to have the child table in this format? It would be easier if the income and expenditure were in different columns. You could create two views, one for income and the other for... |
Forum: Oracle Dec 6th, 2006 |
| Replies: 4 Views: 3,277 Dont forget the final
);
to finish off the statement.
Alistair |
Forum: Windows NT / 2000 / XP Dec 5th, 2006 |
| Replies: 5 Views: 8,760 Yep, it's is working and very interesting suggestions. I downloaded the trial version of Power DVD and that seems to have solved the problem. I guess it has the appropriate codecs provided with the... |
Forum: Windows NT / 2000 / XP Dec 5th, 2006 |
| Replies: 8 Views: 14,058 With help from a friend and teachingmyself I've managed to sort this problem out. The microphone boost tick box was very well hidden. I had to click on properties and then advanced options to bring... |
Forum: Windows NT / 2000 / XP Dec 5th, 2006 |
| Replies: 8 Views: 14,058 Hi Guys
Thanks for the replies. I've tried several microphones and they all have the same result. I tried the microphone from my PC and it has the same problem on the new PC. I'm not sure that they... |
Forum: Windows NT / 2000 / XP Dec 4th, 2006 |
| Replies: 8 Views: 14,058 I've tried both things that you've suggested. When I did the test the voice level hardly registered even though the recording level for the microphone was set to maximum. |
Forum: Windows NT / 2000 / XP Dec 4th, 2006 |
| Replies: 5 Views: 8,760 The link doesn't pull up the page, is it correct or has the page gone?
Thanks
Alistair |
Forum: Oracle Dec 4th, 2006 |
| Replies: 1 Views: 16,410 Hi
You have to understand Oracle storage.
Each table is made up of extents and each extent is made up of oracle blocks - a common block size is 8k. So you have a table with 10 extents (80K).
... |
Forum: Oracle Dec 4th, 2006 |
| Replies: 4 Views: 3,277 Have you downloaded Oracle software? Then after installation connect to the database create yourself an acount
WINDOWS
c:\> sqlplus "/as sysdba"
UNIX
$ sqlplus "/as sysdba"
SQL> create... |
Forum: Oracle Dec 4th, 2006 |
| Replies: 1 Views: 3,095 Hi
You don't say which version of Oracle that your using.
If the live server has an identical setup to the test server you could simply shut the test database down and copy the files into the... |
Forum: Oracle Dec 4th, 2006 |
| Replies: 2 Views: 6,001 Have you tried http://otn.oracle.com and follow the download link.
Alistair |