Wind Chill PDM LINK

2004-01-15 Thread M.Godlewski
List,
 
We are starting to use PTC WindChill in our Oracle 9i environment.  If anyone has expierence with this product, I would a appreciate it I could discuss with you offline.  Please e-mail me directly.
 
TIA
 
Do you Yahoo!?
Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes

Re: Fwd: Stored Outline Problem

2003-12-17 Thread M.Godlewski
Bill,
 
I tried your example on my systems.  On Sun solaris 9.2.0.4 has the same issue of non matching hash values.  Sun Solaris 8.1.7.3 has matching hash_values.Bill Buchan <[EMAIL PROTECTED]> wrote:
Additional information:The problem described below occurs on 9.2.0.4 (Linux).I have just tried re-producing on 8.1.7.4 (Solaris) and it actually worked fine there (hash values in ol$ and v$sql matched).Once again, any input welcome.Thanks,- Bill.>Hi all,>>I'm trying to set up stored outlines and am running into the following >problem (OUTLN tables are initially empty and the shared pool has just >been flushed):>>>ALTER SESSION SET CREATE_STORED_OUTLINES = TRUE;>>SELECT 'THISISMYTEST' FROM DUAL;>>ALTER SESSION SET CREATE_STORED_OUTLINES = FALSE;>>SQL> SELECT HASH_VALUE,SQL_TEXT FROM OUTLN.OL$;>>HASH_VALUE SQL_TEXT>-- >1024768383 SEL!
ECT
 'THISISMYTEST' FROM DUAL>>SQL> SELECT HASH_VALUE,SQL_TEXT FROM V$SQL WHERE SQL_TEXT LIKE >'%THISISMYTEST%';>>HASH_VALUE SQL_TEXT>-- >2081312514 SELECT 'THISISMYTEST' FROM DUAL>2452395670 SELECT HASH_VALUE,SQL_TEXT FROM V$SQL WHERE SQL_TEXT LIKE '%> THISISMYTEST%'>>>Now (as expected) there is now one row in OUTLN.OL$ but the HASH_VALUE != >the HASH_VALUE for the given SELECT statement in v$sql. In fact the >HASH_VALUE doesn't match anything in v$sql.>>Obviously (and demonstratively) the outline will not be used if the query >hashes to a different value that the outline. Am I missing >something? (CREATE ANY OUTLINE is granted)>>>Thanks for any help,>- Bill.-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Bill
 BuchanINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing

Re: Exclusive Password file, multiple databases

2003-12-16 Thread M.Godlewski
April,
 
Look for a syntax error.April Wells <[EMAIL PROTECTED]> wrote:


Okay, I have been trying Google and Tahiti for 2 days, and I can't for the life of me figure out how to clue in my database.  
9.2.0.2 on AIX 5l 
I am running multiple databases and am trying to get all of the instances running with remote_login_passwordfile=exclusive.  Most of the databases are running fine, but one insists on looking for the default file name, despite my having provided filename= parameter to orapwd.  I can't find anything that is supposed to clue it in in this circumstance, and recreating the password file doesn't really so any good either.  Every time I try to start the database using the pfile, it complains about wanting the orapwd file... 
All of the other databases are happy enough with what I did.  What am I doing wrong with this one... where do I start looking?  
April Wells Oracle DBA/Oracle Apps DBA Corporate Systems Amarillo Texas   /\  /   \ / \ \ /   \/   >\<  \  >\<  \ Few people really enjoy the simple pleasure of flying a kite Adam Wells age 11 



The information contained in this communication, including attachments, is strictly confidential and for the intended use of the addressee only; it may also contain proprietary, price sensitive, or legally privileged information. Notice is hereby given that any disclosure, distribution, dissemination, use, or copying of the information by anyone other than the intended recipient is strictly prohibited and may be illegal. If you have received this communication in error, please notify the sender immediately by reply e-mail, delete this communication, and destroy all copies.

Corporate Systems, Inc. has taken reasonable precautions to ensure that any attachment to this e-mail has been swept for viruses. We specifically disclaim all liability and will accept no responsibility for damage sustained as a result of software viruses and advise you to carry out your own virus checks before opening any attachment.

Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing

RE: table partitions

2003-12-16 Thread M.Godlewski
Alternatively you could create the table based on a time_key and map that to the time table.  Then the partitions key could change meaning as the years go by.
 
i.e. time_key 1 = January of 2004
  time_key 2 = Februrary of 2004
...
 
truncate the partitions as needed and reuse by changing the date in the time table.
time_key 1 = January of 2005
time_key 2 = Feburary of 2005
DENNIS WILLIAMS <[EMAIL PROTECTED]> wrote:
Rick - Well, a simple way to do it might be to create 5 years of partitions,based on date as described. Then map all the Jan partitions to the sametablespace, Feb partitions to the same tablespace, etc. Instead oftruncating a partition, just drop it to reclaim the space. Crude, but mightmeet your needs without adding a new column. If you are still working therein 5 years, then congratulate yourself and create another 5 years ofpartitions.Dennis WilliamsDBALifetouch, Inc.[EMAIL PROTECTED] -Original Message-Sent: Tuesday, December 16, 2003 11:39 AMTo: Multiple recipients of list ORACLE-LYes, this is what I was looking for. I don't care about the year, and don'twant to worry about adding new partitions for every new month that comesalong each year. This table will only needs to contain !
six
 months worth ofdata. I will not be archiving it at all. I wanted to truncate thedata/partition after it was 6 months old.Thanks,Rick Stephenson-Original Message-Sent: Tuesday, December 16, 2003 6:49 AMTo: Multiple recipients of list ORACLE-LFrom what I understood, he's asking how to put all January records in onepartition, all Feb in another etc.So you end up with 12 partitions for as many years as you wish. I could notthink of any other solution then the one he does not want to.rw> Your high value for each partition can just be the beginning of every> month. For example: > > CREATE TABLE ACCOUNTS> (> STATEMENT_DATE DATE NOT NULL,> ACCOUNT_NUMBER VARCHAR2(8) NOT NULL,> BILLING_CYCLE VARCHAR2(2) NOT NULL,-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Wartiak RastislavINET: [EMAIL PROTECTED]Fat
 City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).This email and any files transmitted with it are confidential and intendedsolely for the use of the individual or entity to which they are addressed.This message contains confidential information and is intended only for theindividual named. If you are not the named addressee you should notdisseminate, distribute or copy this e-mail. Please notify the senderimmediately by e-mail if you have received this e-ma!
il by
 mistake and deletethis e-mail from your system. If you are not the intended recipient you arenotified that disclosing, copying, forwarding or otherwise distributing ortaking any action in reliance on the contents of this information isstrictly prohibited. -- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Rick StephensonINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).-- Please !
see the
 official ORACLE-L FAQ: http://www.orafaq.net-- Author: DENNIS WILLIAMSINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing

Re: xml formatting problem after upgrade to 9.2.0.3 from 9.2.0.1

2003-12-03 Thread M.Godlewski
Jake,
 
You may want to check the xml or xmldb form on otn.oracle.com.  I seem to recall seeing a similar question.  I tried to run a search, but the site is 404 at this time for me.Jake Johnson <[EMAIL PROTECTED]> wrote:
Since I upgraded to 9.2.0.3 my xml is no longer indented. Any ideas?9.2.0.1JDEFAZIOJWMILLE2SNGHATTAJALARAGHAM9.2.0.3JDEFAZIOJWMILLE2SNGHATTAJALARAGHAM-- Thanks,Jake Johnson[EMAIL PROTECTED]__Plutoid - http://www.plutoid.com - Shop Plutoid for the best prices onRims, Tires, and Wheel Packages.-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Jake JohnsonINET: [EMAIL PROTECTED]Fat City Network !
Services
 -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
Free Pop-Up Blocker - Get it now

Re: query taking a long time to run via sqlnet

2003-11-06 Thread M.Godlewski
Zabair,
 
Have you tried trace?
 
Did you check trace route to see how many hops it makes to the database server?Zabair Ahmed <[EMAIL PROTECTED]> wrote:

I've got the follwing piece of code which takes almost 3 seconds to run when I execute it on the server itself using sqlplus.
 
DECLARE    p_xml_in LONG(32760);    p_xml_out LONG(32760);BEGIN    p_xml_in := 'D3846GIVEUP28/10/200313ENT_ID>A001ACT>1>N>29/10/2003IALS>New
 CustomerOCCUPANT>3837004115853N99NTACT_REASON>NLBACK_COMMENTS>4115853AL_BILL_TO_OFFICE>YYAME>W
 SmithYNG>952117400012EINESS_FLAG>N9521174000121TYPE>576931001022ADING>NNNATE_BILL>YNNT_CARD_REQD>JT>';
    pkg_ice_guto.sp_perform_guto(p_xml_in, p_xml_out);
EXCEPTIONWHEN OTHERS THEN    dbms_output.put_line(SubStr('Error '||TO_CHAR(SQLCODE)||': '||SQLERRM, 1, 255));RAISE;END;/
 
The same query when I run it via a client/server connection takes fore ever to run, it's been almost 2hrs and it's still running
 
I wonder what I could do to get to the bottom of this query taking a very long time to  execute using a client/server connection. 
 
No errors in the alert.log so far.
 
Oracle 9.2.0.4
HP-UX11
Connection is TCP/IP.
 
TIA
 
Zabair
 


Want to chat instantly with your online friends? Get the FREE Yahoo! Messenger
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

XDB XLMSCHEMA

2003-11-06 Thread M.Godlewski
List,
 
There doesn't seem to be any cool tools to generate XMLSchemas for XDB that I could find.
 
Here is a simple sql script to pull a table out of the data dictionary and generate a basic XMLSCHEMA to register in Oracle XDB.
 
I'm trying to figure out what the conversion is for Oracle datatypes to XML data types.
 
I figure Oracle's varchar2 datatype converts to XML's string datatype.  
 
Is there a document that would have the conversion somewhere?
 
Secondly, I'm trying to add the generation to the xmlschema for ref (i.e. ) for constraints.  I know there is a lot of knowledge on this list.  Was wondering if any one had a decode or snipet of code that they would be willing to give me to add to my simple program to pull constraints and turn them into ref statements, or better yet point me to a tool.
 
TIA
M.
 
 
 
column dum1 noprintcolumn dum2 noprintcolumn dum3 noprintcolumn dum4 noprint
# set termout off# set feedback off#set verify off# set echo offset pagesize 0set heading off
spool xml.out
 
select  table_name dum2, 6 dum3, 1 dum4, 'DECLARE' from user_tablesUNIONselect  table_name dum2, 7 dum3, 1 dum4, lower(table_name)||'schema VARCHAR2(2000) := '' from user_tablesUNIONselect  table_name dum2, 8 dum3, 1 dum4, 'xmlns:xs="http://www.w3.org/2001/XMLSchema"' from user_tablesUNIONselect  table_name dum2, 9 dum3, 1 dum4, 'xmlns:xdb="'">http://xmlns.oracle.com/xdb">' from user_tablesUNIONselect  table_name dum2, 10 dum3, 1 dum4, '' from user_tablesUNIONselect  table_name dum2, 11 dum3, 1 dum4, '' from user_tablesUNIONselect  table_name dum2, 12 dum3, 1
 dum4, '' from user_tablesUNIONselect  a.table_name, 20, a.column_id,    decode( a.column_id, 1, '','')||    rpad('  ||decode(a.data_type,    'VARCHAR2', 'VARCHAR2 ('||a.data_length||')',    'CHAR', 'type="xs:string"',    'NCHAR',
 'type="xs:string"',    'NVARCHAR2', 'type="xs:string"',    'CLOB', 'type="xs:clob"',    'BLOB', 'type="xs:blob"',    'NUMBER','type="xs:float"',    'DATE', 'type="xs:date"',    'ERROR!! '||a.data_type||' not
 handled!')  ||decode( a.nullable, 'Y',' ', ' nillable="false"/>' )  ||decode( a.nullable, 'N','', '/>')  from user_tab_columns a, user_tables b  where a.table_name = b.table_nameUNIONselect  table_name dum2, 30 dum3, 1 dum4, '' from user_tablesUNIONselect  table_name dum2, 40 dum3, 1 dum4, '' from user_tablesUNIONselect  table_name dum2, 50 dum3, 1 dum4, '' from user_tablesUNIONselect  table_name dum2, 60 dum3, 1 dum4, ''';' from user_tablesUNIONselect  table_name dum2, 70 dum3, 1 dum4, 'BEGIN' from
 user_tablesUNIONselect  table_name dum2, 80 dum3, 1 dum4, 'DBMS_XMLSCHEMA.RegisterSchema(''http://otn.oracle.com/'||lower(table_name)||'.xsd'' ,'||lower(table_name)||'schema );' from user_tablesUNIONselect  table_name dum2, 90 dum3, 1 dum4, 'END;' from user_tablesUNIONselect  table_name dum2, 95 dum3, 1 dum4, '/' from user_tablesorder by 1, 2, 3/
 
 
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

xdb and xschema

2003-10-31 Thread M.Godlewski
I've been tasked to create an xschema in the XDB repository.  I'm new to xml.  Is there a good place to start?
I've run the catqm.sql script to create the XDB repository, but I'm searching for the next steps.  Any help appreciated.
TIA
M.
Do you Yahoo!?
Exclusive Video Premiere - Britney Spears

Oracle 9i client download from web?

2003-10-15 Thread M.Godlewski
List,
I looked on technet.oracle.com for the 9i release 2 client to download.  I didn't see it.  Is there a place I can pull the Oracle client for 9.2 from the web?
TIA
M.
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

Re: Reboot Solaris and Oracle 9i install

2003-10-15 Thread M.Godlewski
Thanks Everyone for there answers!  Mujeeb Chowdhry <[EMAIL PROTECTED]> wrote:
try init 6>>> [EMAIL PROTECTED] 10/13/03 11:04AM >>>Use 'shutdown now'Then 'reboot -r'>>> [EMAIL PROTECTED] 10/13/03 7:34:24 AM >>>List,Does anyone know the correct Solaris commands to reboot a UNIX Solaris64 bit os system. Is it init, shutdown or reboot?I'm attempting to install Oracle 9i Release 2 on a Solaris machine. Ireceived a memory error when attempting to create an Oracle database, soI need the system rebooted to load the kernel with the correct sharedmemory and semaphore settings. The system admin is only part time, andcurrently not available. The system is in single user mode at thistime. With all the knowledge on this list, I thought this may be a goodplace to ask the question or maybe to point me to a document that wouldhave the reboot
 information.Thanks,M.Do you Yahoo!?The New Yahoo! Shopping - with improved product search-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Mujeeb ChowdhryINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

Reboot Solaris and Oracle 9i install

2003-10-13 Thread M.Godlewski
List,
Does anyone know the correct Solaris commands to reboot a UNIX Solaris 64 bit os system.  Is it init, shutdown or reboot?
I'm attempting to install Oracle 9i Release 2 on a Solaris machine.  I received a memory error when attempting to create an Oracle database, so I need the system rebooted to load the kernel with the correct shared memory and semaphore settings.  The system admin is only part time, and currently not available.  The system is in single user mode at this time.  With all the knowledge on this list, I thought this may be a good place to ask the question or maybe to point me to a document that would have the reboot information.
Thanks,
M.
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

Re: Hiding passwords

2003-09-23 Thread M.Godlewski
You could set up environment variables and then reference the environment variable in your script. 
 
HTH 
M.[EMAIL PROTECTED] wrote:
There is a good discussion in asktom website on this topic.Here is the link :http://asktom.oracle.com/pls/ask/f?p=4950:8:F4950_P8_DISPLAYID:142212348066Hth.Best Regards,Prasad"O'Neill, Sean" <[EMAIL PROTECTED] <[EMAIL PROTECTED] ORACLE-L list of recipients Multiple To:>non.ie> cc: Sent by: Subject: Hiding passwords [EMAIL PROTECTED] .com 09/23/2003 10:24 AM Please respond to ORACLE-L So the story goes like this. We're a NT/W2K shop. We have various scriptsthat run DB related jobs but these are in plain text and we'd like to"hide"these passwords in some way to allow scripts to run but the passwords notbe"visible" to potential prying eyes. Has anyone cracked this one yet. I'vehad a trawl around MetaLink but found nothin!
g of
 substance.-Seán O' NeillOrganon (Ireland) Ltd.[subscribed: digest mode]--Please see the official ORACLE-L FAQ: http://www.orafaq.net--Author: O'Neill, SeanINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: INET: [EMAIL PROTECTED]Fat City Network Service!
s --
 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

Re: Documents in or outside the database.

2003-09-15 Thread M.Godlewski
Rachel,
 
The documents would basically be just attachments the web client would want to view, so bfiles are reasonable.
 
Thanks,Rachel Carmichael <[EMAIL PROTECTED]> wrote:
Compromise? BFILE?Unless we are actually trying to search the documents themselves, Istore documents outside the database and store the pathname to thedocument location within the database itself.--- "M.Godlewski" <[EMAIL PROTECTED]>wrote:> Hi listers,> > We are working on a project that will have documents as attachments. > The developers want to store the documents outside the database on> the application server. I want to store the documents inside the> database for recovery purposes. Is there a white paper or document> that has performance information for blob/clob storage and retrieval> database performance information?> > TIA> M.> > > > > -> Do you Yahoo!?> Yahoo! SiteBuilder - Free,
 easy-to-use web site design software__Do you Yahoo!?Yahoo! SiteBuilder - Free, easy-to-use web site design softwarehttp://sitebuilder.yahoo.com-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Rachel CarmichaelINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

Documents in or outside the database.

2003-09-09 Thread M.Godlewski

Hi listers,
 
We are working on a project that will have documents as attachments.  The developers want to store the documents outside the database on the application server.  I want to store the documents inside the database for recovery purposes.  Is there a white paper or document that has performance information for blob/clob storage and retrieval database performance information?
 
TIA
M. 
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

RE: ERD to O-O

2003-08-27 Thread M.Godlewski
Thanks to all for your help.  I figured there was a way to do it, but didn't know where to look.Stephane Faroult <[EMAIL PROTECTED]> wrote:
dulcian, not dulican :-)>- --- Original Message --- ->From: DENNIS WILLIAMS <[EMAIL PROTECTED]>>To: Multiple recipients of list ORACLE-L><[EMAIL PROTECTED]>>Sent: Wed, 27 Aug 2003 07:04:28>>Melissa - Paul Dorsey of Dulican, Inc. has spoken>on tools they have>developed in this area. Dulican's web address>should be www.dulican.com> , but I don't get a>response.Dennis Williams >DBA, 80%OCP, 100% DBA >Lifetouch, Inc. >[EMAIL PROTECTED] >>-Original Message->Sent: Wednesday, August 27, 2003 9:44 AM>To: Multiple recipients of list ORACLE-L>>>I working on a development project that I'm trying>to take an ERD an convert>it t!
o object
 oriented. Does anyone know a tool or>path to follow to>accomplish this?> >TIA>>>Jared Still <[EMAIL PROTECTED]>wrote:>>>Has anyone else noticed?>>Not so long ago, we saw quite a few more questions>about>such things as data modeling, application security>architecture,>physical database design, and Oracle Designer>>Not so much anymore. >>Do you think it's because there are so few>development projects>taking place? Seems like in house development died>with the>dot bomb and has not begun to recover.>>I know at my place of employment there is very>little development,>but that is due more to the size and nature of this>place, as >well as the management. ( they don't like in house>development :( )>>Now I spend my days with stuff like making>NetBa!
ckup work
 with Oracle,>migrating SAP all over the place and keeping things>running.>>Not that we haven't always done those things, but I>miss some>not having a good development project. Ah, to do!>some real >data modeling again.>>Just some food for thought.>>Jared>-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Stephane FaroultINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HE!
LP
 command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

RE: ERD to O-O

2003-08-27 Thread M.Godlewski
Thanks!  I'll check google for the link."TOMPKINS, MARGARET" <[EMAIL PROTECTED]> wrote:
Paul Dorsey wrote a great article on this and it appears in the September issue of the ODTUG Technical Journal. MaggieRespectfully,> Maggie Tompkins - DCII Integration> Technology Services Organization - Kansas City> Defense Finance and Accounting Service> 816-926-1117 (DSN 465); [EMAIL PROTECTED]-Original Message-Sent: Wednesday, August 27, 2003 10:04 AMTo: Multiple recipients of list ORACLE-LMelissa - Paul Dorsey of Dulican, Inc. has spoken on tools they havedeveloped in this area. Dulican's web address should be www.dulican.com, but I don't get a response.Dennis Williams DBA, 80%OCP, 100% DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message-Sent: Wednesday, August 27, 2003 9:44 AMTo: Multiple recipients!
 of list
 ORACLE-LI working on a development project that I'm trying to take an ERD an convertit to object oriented. Does anyone know a tool or path to follow toaccomplish this?TIAJared Still <[EMAIL PROTECTED]>wrote:Has anyone else noticed?Not so long ago, we saw quite a few more questions aboutsuch things as data modeling, application security architecture,physical database design, and Oracle DesignerNot so much anymore. Do you think it's because there are so few development projectstaking place? Seems like in house development died with thedot bomb and has not begun to recover.I know at my place of employment there is very little development,but that is due more to the size and nature of this place, as well as the management. ( they don't like in house development :( )Now I spend my days with stuff like making NetBackup work with Oracle,migrating SAP all over th!
e place
 and keeping things running.Not that we haven't always done those things, but I miss somenot having a good development project. Ah, to do! some real data modeling again.Just some food for thought.Jared-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Jared StillINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing)._ Do you Yahoo!?!
The New
 Yahoo! Search - Faster. Easier. Bingo.-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: DENNIS WILLIAMSINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: TOMPKINS, MARGARETINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538!
-5051
 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

Re: Nature of Oracle-l has changed

2003-08-27 Thread M.Godlewski
I working on a development project that I'm trying to take an ERD an convert it to object oriented.  Does anyone know a tool or path to follow to accomplish this?
 
TIA
Jared Still <[EMAIL PROTECTED]> wrote:
Has anyone else noticed?Not so long ago, we saw quite a few more questions aboutsuch things as data modeling, application security architecture,physical database design, and Oracle DesignerNot so much anymore. Do you think it's because there are so few development projectstaking place? Seems like in house development died with thedot bomb and has not begun to recover.I know at my place of employment there is very little development,but that is due more to the size and nature of this place, as well as the management. ( they don't like in house development :( )Now I spend my days with stuff like making NetBackup work with Oracle,migrating SAP all over the place and keeping things running.Not that we haven't always done those things, but I miss somenot having a good development project. Ah, to do!
 some
 real data modeling again.Just some food for thought.Jared-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Jared StillINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

PTC Windchill

2003-08-14 Thread M.Godlewski
We are planning to install and test a product called PTC Windchill.  Has anyone used this software?  Is there any gotchas with it?
 
TIA
M.
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

RE: PTC Windchill

2003-08-14 Thread M.Godlewski

Thanks Rich! 
 
I'm hope the product does support archive log mode.  Could make for some creative backup plans otherwise.
"Jesse, Rich" <[EMAIL PROTECTED]> wrote:

I can't comment on the product itself since I've never used it. Strictlyspeaking from the DB end of Windchill, ignore most of what PTC says aboutsetting up Oracle. It's a bare bones install with no tuning whatsoever.The Oracle software comes as a fixed, non-patchable, non-OFA version. Thedefault DB setup puts all files on the same mountpoint as the software. I'mtrying to remember if archivelog mode is suported or not (yes, you heardthat correctly). It may depend on if there's external vaulting or not.There's no RI in the schema. This has been my experience with most vendorproduct implementations on Oracle. Hopefully, I'm remebering thiscorrectly!This being said, I've not touched the production DB for tuning or downtimesince I created it back in October. After the software was installed (whichalso installs their version of Or!
acle and
 the DB) and re-installed severaltimes prior to production, we moved the DB to a proper 6-way RAID 10 (or isit 0+1? I forget) and some smaller mirrored stripes, splitting up data fromcontrol from redo from archive, and all's been well WITH THE DB ever since.I used what I consider "standard" items in the init.ora (CBO, archivelog,etc) and haven't needed to tune it. I haven't even (yet) needed to applyTim Gorman's optimizer index parameter fixes. The only thing I've needed towatch for is the growth of the LOBs. YMMV!Also, our account rep has been VERY receptive in our feedback, and they areusing some of our suggestions in versions since (and for other customers).I'll give them credit for that.One final note: Not every place is going to have a dedicated DBA. Mostvendors that I've dealt with want to set things up in a simple genericfashion, probably in an effort to reduce initial problems. I think that maybe a little
 short-sighted in some cases, as I think performance is a majorcause of support calls ("The system's slow") and can be very difficult tocorrectly troubleshoot and remedy remotely a year or two afterimplementation. Just my $.02 on that...HTH! GL! :)RichRich Jesse System/Database Administrator[EMAIL PROTECTED] Quad/Tech Inc, Sussex, WI USA-Original Message-Sent: Wednesday, August 13, 2003 9:14 AMTo: Multiple recipients of list ORACLE-LWe are planning to install and test a product called PTC Windchill. Hasanyone used this software? Is there any gotchas with it?TIAM.-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Jesse, RichINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting
 services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

Re: 9i-OCP Question

2003-08-04 Thread M.Godlewski
I took the 8i OCP upgrade exam this weekend. I was amazed at one question.  It was asking about the OUI and installing third party software.  Now I've been an Oracle DBA for many years, and I would have thought Oracle would be more concerned about the Oracle database and the way it works rather then third party software, but apparently that is an important enough piece of information to Oracle Education to make it into a 45 question exam.Tim Gorman <[EMAIL PROTECTED]> wrote:
Experience with various flavors of storage technology plus a decade of DBAexperience can't possibly prepare me for what I haven't read (i.e. "Oracle'srecommendations"). In a multiple-choice test format, unlike real life, Ican't possibly argue with what Oracle has recommended...No wonder I failed my first try at the 9iOCP upgrade exam. Yes, I'll tryagain, once the lobotomy scars heal...on 7/30/03 10:19 AM, Senthil Kumar at [EMAIL PROTECTED] wrote:> Hi all,> > What is the correct answer for this?> > Q> If you have 2 redo log groups with 4 members each, how many disks does> Oracle recommend> to keep the redo log files?> > 1. 8> 2. 2> 3. 1> 4. 4> > Which is the correct answer.> > TIA> Senthil-- Please
 see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Tim GormanINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

RE: Unix root account remote access

2003-07-18 Thread M.Godlewski
Thanks!  I'll look into that.Kirtikumar Deshpande <[EMAIL PROTECTED]> wrote:
That would work. I have done that in the past, by hanging a modem to the Console RS-232 port and dialing in. Loaded complete AIX 3.2.5, and Oracle 6.x from my office in Irving TX, while the server was inEverglades, FL. Worked fine, except it was a bit slow.. There was no GUI and Java stuff in thatOracle Installer ;) - Kirti --- Stephen Lee <[EMAIL PROTECTED]>wrote:> One possibility -- probably a slim possibility: If the remote site can hook> up a console server to the box, then you connect to the console server, and> it will be like you are right there at the console ... That's the theory> anyway.> > -Original Message-> Sent: Friday, July 18, 2003 9:04 AM> To: Multiple recipients of list ORACLE-L> > > Get airline tickets, you are out of luck> !
>
 -Original Message-> Sent: Friday, July 18, 2003 8:49 AM> To: Multiple recipients of list ORACLE-L> > > Thanks for the suggestion.> > Unfortunately, there is no other account created at this point, and I don't> have access to the machine it is remote.> > > > Mohammed Shakir <[EMAIL PROTECTED]>wrote:> > Why do not you login as you and then login as root?> > It is for your protection that nobody should be able to remote login> from outside and any one who is login as root can be monitored.> > HTH> > --- "M.Godlewski" wrote:> > List,> > > > I want to install Oracle on a UNIX system no sys admin on board yet,> > so I get to set up the system with the Oracle account etc. > > Unfortunately, I can not log into the root account remotely. I get a> > non console messag!
e. Is
 there a way to allow remote root> > connections?> > > > > > > > > > -> > Do you Yahoo!?> > The New Yahoo! Search - Faster. Easier. Bingo.> > > => Mohammed Shakir> CompuSoft, Inc.> 11 Heather Way> East Brunswick, NJ 08816-2825> (732) 672-0464 (Cell)> (732) ! 257-6001 (Home)> > __Do you Yahoo!?SBC Yahoo! DSL - Now only $29.95 per month!http://sbc.yahoo.com-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Kirtikumar DeshpandeINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from!
 this
 mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

Re: Unix root account remote access

2003-07-18 Thread M.Godlewski
Thanks for the suggestion.
 
Unfortunately, there is no other account created at this point, and I don't have access to the machine it is remote.
 
Mohammed Shakir <[EMAIL PROTECTED]> wrote:

Why do not you login as you and then login as root?It is for your protection that nobody should be able to remote loginfrom outside and any one who is login as root can be monitored.HTH--- "M.Godlewski" <[EMAIL PROTECTED]>wrote:> List,> > I want to install Oracle on a UNIX system no sys admin on board yet,> so I get to set up the system with the Oracle account etc. > Unfortunately, I can not log into the root account remotely. I get a> non console message. Is there a way to allow remote root> connections?> > > > > -> Do you Yahoo!?> The New Yahoo! Search - Faster. Easier. Bingo.=Mohammed ShakirCompuSoft, Inc.11 Heather WayEast Brunswick, NJ 08816-2825(732) 672-0464 (Cell)(732) !
257-6001
 (Home)__Do you Yahoo!?SBC Yahoo! DSL - Now only $29.95 per month!http://sbc.yahoo.com-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Mohammed ShakirINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

Unix root account remote access

2003-07-17 Thread M.Godlewski
List,
 
I want to install Oracle on a UNIX system no sys admin on board yet, so I get to set up the system with the Oracle account etc.  Unfortunately, I can not log into the root account remotely.  I get a non console message.  Is there a way to allow remote root connections?
 
 
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

Re: Removing Oracle 9iAS - solution

2003-07-15 Thread M.Godlewski
I found a document on metalink.  I guess my brain is working slower then my fingers this evening."M.Godlewski" <[EMAIL PROTECTED]> wrote:


Is there any tricks to removing Oracle 9iAS from a UNIX Solaris server, or is an rm -r on the directory structure sufficient?


Do you Yahoo!?The New Yahoo! Search - Faster. Easier. Bingo.
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

Removing Oracle 9iAS

2003-07-15 Thread M.Godlewski

Is there any tricks to removing Oracle 9iAS from a UNIX Solaris server, or is an rm -r on the directory structure sufficient?
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

RE: Interview Questions for a Unix Solaris System Admin

2003-07-15 Thread M.Godlewski
Matthew,
 
Thanks for the list of questions.Matthew Zito <[EMAIL PROTECTED]> wrote:

Okay, here are my favorites for senior candidates (I'm giving all mysecrets away...):1) What is an inode? Bonus: What important piece of file information isNOT stored in the inode?2) What is priority paging and how does it work? (mildly dated, butuseful if they claim to have been around for a while)3) What does sr stand for in vmstat output?4) How would I configure the gigabit ethernet interface to force it tobe full duplex?5) How does RAID-5 work? Bonus question: how does raid-4 work?Extra-extra bonus question: how does raid-3 work?6) What's the difference between the passwd and the shadow files?7) What's the difference between the dsk and rdsk devices in /dev? Bonusquestion: what's the difference between a block and a character device?8) How do journaling filesystems work?9) What's the difference between ss!
h and
 telnet? Why is one preferableover the other?10) What's the difference between the e4000 and the e4500 (or e6000 ande6500, etc. - also a bit dated, but there's still a million of thethings out there)11) What happens on an E6500 when I add boards in the bottom two slots?(I won't ask this if the person has never touched an E6500)12) On an Sbus e-class I/O tray, what performance considerations do Ihave to keep in mind when I'm installing Sbus cards?13) Why is NIS bad?14) What's the difference between TCP and UDP? 15) How does DNS work? Bonus question: is DNS TCP or UDP?Then I usually throw in some amorphous questions: tell me about aperformance problem you tracked down and solved, how do you normallysecure a freshly installed Solaris server, etc. Then I follow up withproduct specific questions - oracle, sun cluster, veritas volumemanager, storage, etc. Thanks,Matt--Matthew ZitoGridApp
 SystemsEmail: [EMAIL PROTECTED]Cell: 646-220-3551Phone: 212-358-8211 x 359http://www.gridapp.com> -Original Message-> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED]> Sent: Tuesday, July 15, 2003 1:44 PM> To: Multiple recipients of list ORACLE-L> Subject: RE: Interview Questions for a Unix Solaris System Admin> > > question #1: Do you realize that your DBA is a God, and you > will obey his/her edicts without question?> > question #2: Are you aware of the daily offering of > food/beer required to keep in your God's (DBA's) good graces?> > etc...> > Scott Shafer> San Antonio, TX> 210.581.6217> > > > -Original Message-> > From: M.Godlewski [SMTP:[EMAIL PROTECTED]> > Sent: Tuesday, July 15, 2003 1:30 PM!
> >
 To: Multiple recipients of list ORACLE-L> > Subject: Interview Questions for a Unix Solaris System Admin> > > > I've been asked to interview a system admin candidate for > our Solaris > > shop. I've search Google and altavista, but haven't come > up with any > > after 1999 interview questions. Does anyone have a list of > interview > > question or a link to some?> > > > > > > > tia> > > > M> > > > _> > > > Do you Yahoo!?> > The New Yahoo! Search > > - > > Faster. Easier. Bingo.> -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net> -- > Author: > INET: [EMAIL PROTECTED]> > Fat City Network Services -- 858-538-5051
 http://www.fatcity.com> San Diego, California -- Mailing list and web hosting services> -> To REMOVE yourself from this mailing list, send an E-Mail message> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') > and in the message BODY, include a line containing: UNSUB > ORACLE-L (or the name of mailing list you want to be removed > from). You may also send the HELP command for other > information (like subscribing).> -- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: Matthew ZitoINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto:
 [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

RE: Interview Questions for a Unix Solaris System Admin

2003-07-15 Thread M.Godlewski
These are nice questions.  I'm not sure how I would identify if they are technical enough to handle the job though.[EMAIL PROTECTED] wrote:
question #1: Do you realize that your DBA is a God, and you will obeyhis/her edicts without question?question #2: Are you aware of the daily offering of food/beer required tokeep in your God's (DBA's) good graces?etc...Scott ShaferSan Antonio, TX210.581.6217> -Original Message-> From: M.Godlewski [SMTP:[EMAIL PROTECTED]> Sent: Tuesday, July 15, 2003 1:30 PM> To: Multiple recipients of list ORACLE-L> Subject: Interview Questions for a Unix Solaris System Admin> > I've been asked to interview a system admin candidate for our Solaris> shop. I've search Google and altavista, but haven't come up with any> after 1999 interview questions. Does anyone have a list of interview> question or a link to some?> > > > tia> !
>
 M> > _ > > Do you Yahoo!?> The New Yahoo! Search> - Faster.> Easier. Bingo.-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: INET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

Interview Questions for a Unix Solaris System Admin

2003-07-15 Thread M.Godlewski
I've been asked to interview a system admin candidate for our Solaris shop.  I've search Google and altavista, but haven't come up with any after 1999 interview questions.  Does anyone have a list of interview question or a link to some?
 
tia
M
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

System

2003-07-15 Thread M.Godlewski
John Kanagaraj <[EMAIL PROTECTED]> wrote:
Jesse,You could always get around this problem by obtaining an upto dateTNSNAMES.ORA on any Names-aware client using the 'namesctl dump_tnsnames'command that will create/update the tnsnames.ora with the entries from Namesservers. I would suggest renaming the original tnsnames.ora _just_ beforedoing this, and having some script check the sizes of the created file (justin case). John KanagarajOracle Applications DBADBSoft Inc(W): 408-970-7002What would you see if you were allowed to look back at your life at the endof your journey in this earth?** The opinions and statements above are entirely my own and not those of myemployer or clients **> -Original Message-> From: Jesse, Rich [mailto:[EMAIL PROTECTED]> Sent: Tuesday, July 15, 2003 9:25 AM> To: Multiple reci!
pients of
 list ORACLE-L> Subject: RE: MicroSlop DTC> > > Unfortunately, it's not just a problem with this product. Some Oracle> products like OEM can incorrectly populate TNSNAMES.ORA "for > you" because of> course that's always the best thing to do (and isn't there > another Oracle> product that requires it or am I confusing that with the > semi-Intelligent> Agent's requirement of a LISTENER.ORA?).> > And Quest's QCO will largely not work correctly in v2.4 (and > to some extent> in 2.5) without a correctly populated TNSNAMES.ORA (sorry > Jacques!). I went> around and around with Quest Support as to why this is > incorrect and why I> refuse to manually populate a TNSNAMES.ORA on some or all clients.> Supposedly, it'll be fixed in v3.> > Desperately trying to get rid of all TNSNAMES.ORAs on all > non-DBA boxes...> &!
gt;
 > Rich> > Rich Jesse System/Database Administrator> [EMAIL PROTECTED] Quad/Tech Inc, Sussex, WI USA> > > -Original Message-> > From: Goulet, Dick [mailto:[EMAIL PROTECTED]> > Sent: Monday, July 14, 2003 2:15 PM> > To: Multiple recipients of list ORACLE-L> > Subject: RE: MicroSlop DTC> > > > > > Yes, as well as SQL*Plus and ODBCTST.> > > > Dick Goulet> > Senior Oracle DBA> > Oracle Certified 8i DBA > > > > -Original Message-> > Sent: Monday, July 14, 2003 2:59 PM> > To: Multiple recipients of list ORACLE-L> > > > > > > > Hum, does tnsping resolve the service correctly?> > > > Ron Thomas> >> > 9.2.0.1.0 On Win 2K.> > > > Dick Goulet> > Senior Oracle DBA&g!
t; >
 Oracle Certified 8i DBA> > > > -Original Message-> > Sent: Monday, July 14, 2003 1:54 PM> > To: Multiple recipients of list ORACLE-L> > > > > > > > I've seen this happen with older versions of the sqlnet > > client (Different application, same> > symptom). What version of the client are you using?> > > > Ron Thomas> > Hypercom, Inc> > [EMAIL PROTECTED]> > Each new user of a new system uncovers a new class of bugs. > > -- Kernighan> > > > > > > > [EMAIL PROTECTED]> > > > To All, especially any WEB developers out there.> > > > We've a WEB based application that uses MS DTC. > > OK, so we turned on XA in the> > database, but the web servers do not want to play with our > > normal ONmase setup. Instead !
they
 only> > want to work with a TNSNAMES.ORA file in the appriopriate > > place. I've been all over MicroSlop> > Technet and Metalink as well as several other IIS sites with > > no results. Therefore anyone know why> > this is??> > > > Dick Goulet> > Senior Oracle DBA> > Oracle Certified 8i DBA> -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net> -- > Author: Jesse, Rich> INET: [EMAIL PROTECTED]> > Fat City Network Services -- 858-538-5051 http://www.fatcity.com> San Diego, California -- Mailing list and web hosting services> -> To REMOVE yourself from this mailing list, send an E-Mail message> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in> the message BODY, include a line containing: UNSUB ORACLE-L!
>
 (or the name of mailing list you want to be removed from). You may> also send the HELP command for other information (like subscribing).> -- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: John KanagarajINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

RE: Tech meetings

2003-07-01 Thread M.Godlewski
Good information!  Thanks for the heads up on the pit falls."Johnston, Tim" <[EMAIL PROTECTED]> wrote:


We had these at the last place I was at...  The senior folks from the various teams would get together...  One person or group was designated to present a topic for the next meeting...  Neat idea but it failed at that location...  The reason?  The VP of App Dev decided he wanted to attend the meetings...  Which meant we spent every meeting teaching him the basics and never really getting to the good stuff...  It ended up being a huge waste of time for the majority of the people in the room...
 
Tim

-Original Message-From: M.Godlewski [mailto:[EMAIL PROTECTED]Sent: Tuesday, July 01, 2003 12:30 PMTo: Multiple recipients of list ORACLE-LSubject: Tech meetings
List,
 
Just wondering if your organization has tech meetings, and what is discussed and what the goals of the meetings are?
 
I've been asked about this, and was wondering if there is a quick list out there any where.
 
TIA
 


Do you Yahoo!?The New Yahoo! Search - Faster. Easier. Bingo.
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

RE: Tech meetings

2003-07-01 Thread M.Godlewski
Thanks!  This does help me.Rudy Zung <[EMAIL PROTECTED]> wrote:


Don't know if what we do in our shop here qualifies for your question or not, but our dev groups do "stand-up meetings." Relatively quick meetings (that can be done standing up; no meeting rooms required) that are usually finished in about 20 minutes. In the stand-ups, we get heads-up for things and specifications that might be coming down the pipeline from the product management and design side. We get a quick update on the state of deployment (what version has rolled into production, what version is in the QA pipeline) and what the next impending set of changes are about to get pushed onto the dev servers. If there's any potential "gotcha"s that have been experienced (especially on the coding front) they get publicized in the stand-ups as well.
 
The main point of our stand-ups are to make sure that all the developers are relatively aware of the scheduling and direction of the product, and to highlight any programming difficulties and workarounds that might arise so that when different developers hit those gotchas, they'll already know that a solution might already.
 
These stand-up meetings are basically within a development team/group. Project leads have their own meetings with the product management group. So essentially, the product manager has his own meetings; then the product manager has meetings with the dev project leads to convey what they want in the next iteration of the product; the project leads then present these to the dev group in a stand-up meeting.


-----Original Message-From: M.Godlewski [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 12:30 PMTo: Multiple recipients of list ORACLE-LSubject: Tech meetings
List,
 
Just wondering if your organization has tech meetings, and what is discussed and what the goals of the meetings are?
 
I've been asked about this, and was wondering if there is a quick list out there any where.
 
TIA 
 
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

RE: Tech meetings

2003-07-01 Thread M.Godlewski
A little of both!  I would think there is some how do plan to do this, or why is that the recommended way of doing it type questions and answers sessions.
 
DENNIS WILLIAMS <[EMAIL PROTECTED]> wrote:

By tech meetings, do you mean status type meetings or learning typemeetings?-Original Message-Sent: Tuesday, July 01, 2003 11:30 AMTo: Multiple recipients of list ORACLE-LList,Just wondering if your organization has tech meetings, and what is discussedand what the goals of the meetings are?I've been asked about this, and was wondering if there is a quick list outthere any where.TIA_ Do you Yahoo!?The New Yahoo! Search - Faster. Easier. Bingo.-- Please see the official ORACLE-L FAQ: http://www.orafaq.net-- Author: DENNIS WILLIAMSINET: [EMAIL PROTECTED]Fat City Network Services -- 858-538-5051 http://www.fatcity.comSan Diego, California -- Mailing list and web
 hosting services-To REMOVE yourself from this mailing list, send an E-Mail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.

Tech meetings

2003-07-01 Thread M.Godlewski
List,
 
Just wondering if your organization has tech meetings, and what is discussed and what the goals of the meetings are?
 
I've been asked about this, and was wondering if there is a quick list out there any where.
 
TIA
 
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.