abhay sequeira


{ City } mumbai
< Country > india
* Profession *
User No # 20182
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 30
Users Marked my Answers as Wrong # 10
Questions / { abhay sequeira }
Questions Answers Category Views Company eMail




Answers / { abhay sequeira }

Question { TCS, 9997 }

What are the differences between system fresh and client fresh?


Answer

Client Refresh is a process / mechanisum, in which data in
a target client(development, quality) is usually
overwritten by upated data from a production client. There
are two ways by which it can be achived (1) Client Copy &
(2) Client Export

I guess System Refresh is usually carried out to check the
backup & restore mechanisum in a test enviornment.

Is This Answer Correct ?    5 Yes 4 No

Question { 20848 }

Can anyone tell me what is Server and Instance in sap,wat
is exact meaning of that?


Answer

In plain terms 'Server' means a object/componenet that
services request.

Instance in SAP
=================
An Instance in SAP is a combination of Application Server &
Database Server i.e.

When you use the SAP GUI to connect to the Application
Server, the application server in turn communicates to the
database server to service your requests.

The entire Instance is divided into subcomponents
(Application server, Database server) so that the
complexity is reduced, maintenance & deployement becomes
easy. The above are some of the advantages, to understand
what it all means hou have to get hold of some material
that dwelves on 'Client-Server' ARchitecture

Is This Answer Correct ?    12 Yes 6 No


Question { 5957 }

How to delete a table from Database level.


Answer

Pl. don't do that. Doing so would put the database at an
inconsitent state.

if your installation is under unix and the db is oraacle,
then login as the database administrator.
1) su - ora

2) sqlplus "/ as sysdba";

3) drop table .tablename;

You can only drop the table if you own it. There are many
such restrictions imposed so that the user does not
delete / drop any table inadvertently

Is This Answer Correct ?    13 Yes 0 No