RE: Performance tuning

2002-11-06 Thread Vikas Khanna
u are the best judge, Vikas Khanna [EMAIL PROTECTED] -Original Message- Sent: Thursday, November 07, 2002 10:08 AM To: Multiple recipients of list ORACLE-L I have a table in my application . This table gets all inserts during one procedure and select during other . Now if I make an ind

RE: Table Design

2002-10-29 Thread Vikas Khanna
ACLE-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.com -- Author: Vikas Khanna INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538

RE: Re-creating control files with larger maxdatafile setting

2002-09-19 Thread Vikas Khanna
e new datafiles to expand your database. Never the parameter db_files can be more that the MADATAFILES declared in your controlfile; Thanks Vikas Khanna -Original Message- Sent: Thursday, September 19, 2002 1:28 PM To: Multiple recipients of list ORACLE-L George: If you want to recrea

RE: bind variables

2002-09-09 Thread Vikas Khanna
to bind. But in the case of DSS applications yes I do agree that these bind variables are problematic as the data is in abundance and we have to use the data skewness and its other credentials for the optimizer best to use as we are playing with abundance of data. Thanks Vikas Khanna

Must Read for Every Developer and DBA

2002-09-06 Thread Vikas Khanna
10% is spent actually DOING it. If you use bind variables -- very little time will be spent parsing (you can get that statement to execute in 1/10 of the time). Not only that -- but the concurrency and scalability of your database will go WAY up. This is the root cause of your issues, this must be

RE: How to insert Special Characters ?

2002-07-31 Thread Vikas Khanna
not Interested in Bind Variables then, For single Quotation marks use Chr(39) || '1234' || Chr(39) in your SQL statement to solve the problem. Vikas Khanna -Original Message- Sent: Wednesday, July 31, 2002 2:33 PM To: Multiple recipients of list ORACLE-L i presume the stat

RE: how to change nls date format.

2002-07-30 Thread Vikas Khanna
Yes. You can do that when you are creating an instance, define the parameter nls_date_format in the init.ora file as per your requirement, then the nls_date_format for the Instance would be as supplied by you. Alter Session/Alter System would do the same at the time so defined. Vikas Khanna

RE: import question

2002-07-29 Thread Vikas Khanna
from the Export file in an array thus boosting the perf. Thanks Vikas Khanna -Original Message- Sent: Monday, July 29, 2002 5:58 PM To: Multiple recipients of list ORACLE-L Hi, We are importing a large amount of data and uit is generating a huge amount of redo..is there any way of

MUST read Oracle Architecture - Abrief Intro

2002-07-24 Thread Vikas Khanna
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 (li

RE: Myers-Briggs - Too many off topic topics! MUST READ CAREFULLY

2002-07-24 Thread Vikas Khanna
(like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Vikas Khanna INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet acce

RE: ANALYZE question

2002-07-24 Thread Vikas Khanna
operation) 2) Only if the statistics are stale the DBMS_STATS would execute. 3) You can always Export/Import/Set the statistics from one db to another db. Thanks, Vikas Khanna -Original Message- Sent: Wednesday, July 24, 2002 2:33 PM To: Multiple recipients of list ORACLE-L Apart from

RE: Oracle - 32bit/64bit??

2002-07-23 Thread Vikas Khanna
If 64 bit then Oracle9i Enterprise Edition Release 9.0.1.2.0 - 64bit Production else Oracle9i Enterprise Edition Release 9.0.1.2.0 end if; Vikas Khanna -Original Message- Sent: Tuesday, July 23, 2002 3:54 PM To: Multiple recipients of list ORACLE-L Just log into the

RE: how to force the DB to SKIP tx recovery ?

2002-07-23 Thread Vikas Khanna
doing an update of 1/2 a million rows !!! (how would these parameters help?) > -- > From: Vikas Khanna[SMTP:[EMAIL PROTECTED]] > > No, Instance recovery has to take place internally, SMON has to recover > the > committed transactions which were left hanging in t

RE: how to force the DB to SKIP tx recovery ?

2002-07-23 Thread Vikas Khanna
quite often, this would open the instance under crash quite fast as it has to perform less work. But more the checkpoints initiated more the performance degradations as B'ground processes would be under tremendous work. Hope it clarifies. Vikas Khanna -Original Message- Sent: Tu

RE: RE: Why Multiple Parses in Trace ?

2002-07-22 Thread Vikas Khanna
many executions. Anyway a soft parse is not too bad as compared to Hard parse and the applications have proved them to be reasonable functioning well. The CPU and the memory consumed is significantly just 1% what was compared with the hard parse. Vikas Khanna -Original Message- Sent

RE: To create a new datafile or to increase a existing datafile.

2002-07-16 Thread Vikas Khanna
the load among the various datafiles.   If you have one hard disk then it would not matter at all between the two different scenarios.   Vikas Khanna   -Original Message-From: Denham Eva [mailto:[EMAIL PROTECTED]]Sent: Tuesday, July 16, 2002 1:53 PMTo: Multiple recipients of

RE: Dedicated connections and Memory usage

2002-06-26 Thread Vikas Khanna
Use need to use pmap feature of Unix in order to see the real RAM associated with the processes. Vikas Khanna Oracle - DBA -Original Message- Sent: Wednesday, June 26, 2002 5:45 PM To: Multiple recipients of list ORACLE-L Need a little assistance on some "concepts", s

RE: Order rows

2002-05-14 Thread Vikas Khanna
table specifying the created_Date as sysdate(). This would continuously prop up the table data wrt this column. And then you could do order by on this column to get the desired result. Regards, Vikas Khanna -Original Message- [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 11:38

RE: SQL Help Urgent!!!!!!!!!

2002-05-12 Thread Vikas Khanna
Select a.id,a.amount,ccinlineview.bamt from bb a,(Select id,sum(b.amount) bamt from cc b group by id) ccinlineview where a.id = ccinlineview.id ID AMOUNT BAMT -- -- -- 1 1000 1000 1 row selected.   -Original Message-From: sul

RE: STANDBY DATABASE QUESTION?

2002-04-19 Thread Vikas Khanna
wonder  is , if I set it up automatic , is the archive log files automatically copied to standby server , or do I move it manually . ???[Vikas Khanna] You have do transfer them manually to the standy by server. OR you can write automated scripts to do the job for you.    And my

RE: 8.0.5 to 8.1.7 - export/import

2002-04-17 Thread Vikas Khanna
d then also the object would be imported into the designated tablespace. Regards, Vikas Khanna -Original Message- [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 10:38 AM To: Multiple recipients of list ORACLE-L Hi It is Possible to import from NT to Solaris. The table space