Search the web
Sign In
New User? Sign Up
VOUGlist · Virginia Oracle User's Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 639 - 668 of 923   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
639
Hi. I'm trying to experiment with oracle spatial, the geocoder and routing engine. There is sample geodata from NAVTEQ on OTN that I want to experiment with....
andrew200278209
Offline Send Email
Jan 6, 2005
4:25 pm
640
The error message is correct: imp is not a SQL*Plus command. It is an executable program, so you need to issue the command from the operating system command...
Matt Fierst
fierstm
Offline Send Email
Jan 10, 2005
1:53 pm
641
You might be thinking of Oracle Rdb (formerly DEC Rdb) where import is a command from SQL. In straight "Oracle 7/8/9/10" it is a separate executable outside...
Dr Robert Young
rcyoung@...
Send Email
Jan 10, 2005
6:03 pm
642
I'm trying to find the best way to implement a DR solution for Oracle running on legacy systems. I would like to move from the old hardware/software to a...
BP
paulsonb99
Offline Send Email
Jan 17, 2005
7:22 pm
643
Export/Import is one option that has historically been used for this type of reorganization going well back to V6. You will find a lot of information on its...
Dr Robert Young
rcyoung@...
Send Email
Jan 18, 2005
2:19 am
644
Can anyone tell me if there are advantages to running Oracle on NT over Solaris ? From the NT side, the cost is smaller, but you loose tracking individual...
Steff Gonos
steff_gonos@...
Send Email
Jan 20, 2005
7:01 pm
645
+ Interjection by listserv moderator: + Several helpful replies to this posting, below... ... From: "Michael Robison" <mrrobison@...> Slight tangent on...
Virginia Oracle User'...
vouglist
Offline Send Email
Jan 21, 2005
1:22 pm
646
+ Interjection by listserv moderator: + A couple more follow-ups to this posting, below... ... From: "Allen Shepard" <ashepard@...> ...
Virginia Oracle User'...
vouglist
Offline Send Email
Jan 21, 2005
7:58 pm
647
Hi I am trying to help a friend. He is using Erwin 3.51. All he was tasked to do was to add some UDP (user defined properties). He did that successfully. He...
Shariq Mirza
smirza_09_07...
Offline Send Email
Jan 21, 2005
8:34 pm
648
Shariq, It has been a long time since I used ERWin, but do recall that the datatypes are specific to the the database connection/driver. For instance using a...
Moody, Mark
moodymark@...
Send Email
Jan 21, 2005
9:43 pm
649
Allen: A question I missed - what do you mean that you can't backup files while Oracle is running? Is the oracle files or system files of which you write ? ...
Steff Gonos
steff_gonos@...
Send Email
Jan 21, 2005
9:48 pm
650
Thanks for everyone's comments. The bottom line seems to be that oracle is oracle and runs similarily on all platforms. The comment about NT was correct as...
Steff Gonos
steff_gonos@...
Send Email
Jan 21, 2005
9:49 pm
651
I think he must have changed the target database driver. Datatypes are linked to the target database. Thanks Jignesh...
Jignesh Patel
jporadba@...
Send Email
Jan 24, 2005
12:59 pm
652
+ Interjection by listserv moderator: + Follow-up on this series of postings from last week... ... From: "Allen Shepard" <ashepard@...> ...
Virginia Oracle User'...
vouglist
Offline Send Email
Jan 24, 2005
1:01 pm
653
VOUG Membership - If you're considering a trip to a large Oracle conference this year then the following information may be of insterest. IOUG conferences are...
Virginia Oracle User'...
vouglist
Offline Send Email
Jan 27, 2005
2:43 pm
654
Hi All, I have a table with 2 columns Proposal ID and Keyword and the data looks as follows; Proposal ID Keyword 1000000001...
sajidaakhtar2003
sajidaakhtar...
Offline Send Email
Jan 28, 2005
3:41 pm
655
+ Interjection by listserv moderator: + Several helpful responses to this posting, below... ... From: "Rumpi Gravenstein" <rgravens@...> Saj, One...
Virginia Oracle User'...
vouglist
Offline Send Email
Jan 28, 2005
8:44 pm
656
Hi, I'm inserting data into a table, if the insert returns an ORA-02291 exception I want to handle the error and continue: -- -- INSERT INTO PRICE_LIST_DTL...
fosgate_david
Offline Send Email
Feb 2, 2005
1:30 pm
657
Hi, We are converting some Pro*C code use multiple process threads. We're encountering periodic data not found errors when we do this. The data being queried...
capitals122003
Offline Send Email
Feb 2, 2005
1:30 pm
658
HI Use something like this under declare section: declare l_errmsg EXCEPTION; Pragma EXCEPTION_INIT(l_errmsg,-02291); begin insert ... exception when l_errmsg...
Monu
manishbhavu
Offline Send Email
Feb 3, 2005
3:05 pm
659
i'm assuming your GOTO targets are in the code after the INSERT_PRLSTDTL block first, avoid using GOTO's at all costs -- instead, modularize your code or use...
Mark C. Stock
mcstock@...
Send Email
Feb 3, 2005
3:05 pm
660
+ Interjection by listserv moderator: + As always, responses by individuals to these types of postings + are most welcome - corporate solicitations and spam,...
kermitsm
Offline Send Email
Feb 9, 2005
5:14 pm
661
+ Interjection by listserv moderator: + Many interesting and helpful responses to this posting, below, + plus an offer to start a study / support group in the...
Virginia Oracle User'...
vouglist
Offline Send Email
Feb 10, 2005
4:42 pm
662
All, I am using latest version of erwin that does not suport the mySQL database drivers and we have to manually modify the generated scripts to run on MySQL...
Shariq Mirza
smirza_09_07...
Offline Send Email
Feb 14, 2005
8:18 pm
663
Hiya All, I don't understand how the UNION operator works. If I union together two simple queries from one of our tables: SQL> l 1 select spriden_id 2 from...
Larry Blankenship
lblankenship@...
Send Email
Feb 18, 2005
8:44 pm
664
Think of set algebra (and check out the descriptions in the Oracle SQL Manual, at tahiti.oracle.com) UNION: Items that reside in either set (duplicates...
Mark C. Stock
mcstock@...
Send Email
Feb 21, 2005
1:32 pm
665
Hi, you would generally use the union operator to link two queries together for example if you had two tables with people information in them and you wanted a...
c.r.farmer@...
formstojava
Offline Send Email
Feb 21, 2005
1:38 pm
666
We're trying to do an implementation of Oracle Streams using 9iR2 and finding it a very bumpy road. Is anyone familiar with Streams in 10g? Is it a more...
Willis-Ford, Carl
carl_willis-ford@...
Send Email
Feb 25, 2005
3:21 pm
667
Your results may vary depending on the version of 9iR2. I first used Streams in 9.2.0.3 and found it nearly impossible to manage. 9.2.0.4 was a lot better...
Brett Ogletree
bretto97@...
Send Email
Feb 25, 2005
9:01 pm
668
Enter your vote today! A new poll has been created for the VOUGlist group: "VOUG" has always been the acronym for "Virginia Oracle User's Group". Since many...
VOUGlist@yahoogroups....
Send Email
Mar 1, 2005
3:44 pm
Messages 639 - 668 of 923   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help