ANT SCRIPTING INTERVIEW QUESTIONS

ANT SCRIPTING INTERVIEW QUESTIONS


1) How do invoke OS task through ANT?
2) What is the Structure of an ANT file?
3) What is the diff between ANT and MAVEN?
4) Why do u need an ANT?

UNIX Shell Programming Shell Scripting Interview Questions

UNIX Shell Programming Shell Scripting Interview Questions

1.) In shell scripting How to indentify that the previous command was run successfully?
2.) How will you write a shell script to connect to SQL database?
3.) What does UID and GID signify?
4.) What are the different security mechanisms available in UNIX?
5.) What are the different types of shells available in UNIX?
6.) how many users have logged in and logged out in last five or 10 minutes
7.) How do you search the string for vowel's occurrence and number of occurrences of each vowel
8.) What is make used for? How is it different from a shell script?
9.) How to compare floating point number in shell scripting ?
10.) How to delete a word from a file using shell scripting???
11.) How to extract the second row of a text-file?
12.) How to compare two floating point numbers ?
13.) How to compress files by using shell scripting
14.) What are the steps to take files from unix server to windows?
15.) How to find see the file which is created today,s date with time after 10 a.m to 5 p.m?
16.) What is the basic difference u find between a shell script and perl.I mean the advantages of one over
17.) What is use of "cut" command ?Give some examples. Can we use "awk" or "sed"
18.) How Connect to a Database in Shell Programming?Please tell me Step by Step?
19.) What is this line in the shell script do #!/bin/ksh?
20.) Write a shell script to identify the given string is palindrome or not?
21.) What is the difference between writing code in shell and editor?
22.) What is INODE?
23.) What is the difference between a 'thread' and a 'process'?
24.) What does $# stand for?
25.) What is $*?
26.) If you have a string "one two three", Which shell command would you use to extract the strings?
27.) What is the difference between a shell variable that is exported and the one that is not exported?
28.) How will you list only the empty lines in a file (using grep)?
29.) How do you schedule a command to run at 4:00 every morning?
30.) How do u open a read only file in Unix?
31.) What are the different kinds of loops available in shell script?

Solaris Interview Questions

Solaris interview questions

1. List the files in current directory sorted by size ? - ls -l grep ^- sort -nr
2. List the hidden files in current directory ? - ls -a1 grep "^\."
3. Delete blank lines in a file ? - cat sample.txt grep -v ‘^$’ > new_sample.txt
4. Search for a sample string in particular files ? - grep “Debug” *.confHere grep uses the string “Debug” to search in all files with extension“.conf” under current directory.
5. Display the last newly appending lines of a file during appendingdata to the same file by some processes ? - tail –f Debug.logHere tail shows the newly appended data into Debug.log by some processes/user.
6. Display the Disk Usage of file sizes under each directory in currentDirectory ? - du -k * sort –nr (or) du –k . sort -nr
7. Change to a directory, which is having very long name ? - cd CDMA_3X_GEN*Here original directory name is – “CDMA_3X_GENERATION_DATA”.
8. Display the all files recursively with path under current directory ? - find . -depth -print
9. Set the Display automatically for the current new user ? - export DISPLAY=`eval ‘who am i cut -d"(" -f2 cut -d")" -f1′`Here in above command, see single quote, double quote, grave ascent is used. Observe carefully.
10. Display the processes, which are running under yourusername ? - ps –aef grep MaheshvjHere, Maheshvj is the username.
11. List some Hot Keys for bash shell ? - Ctrl+l – Clears the Screen. Ctrl+r – Does a search in previously given commands in shell. Ctrl+u - Clears the typing before the hotkey. Ctrl+a – Places cursor at the beginning of the command at shell. Ctrl+e – Places cursor at the end of the command at shell. Ctrl+d – Kills the shell. Ctrl+z – Places the currently running process into background.
12. Display the files in the directory by file size ? - ls –ltr sort –nr –k 5
13. How to save man pages to a file ? - man col –b > Example : man top col –b > top_help.txt
14. How to know the date & time for – when script is executed ? - Add the following script line in shell script.eval echo "Script is executed at `date`" >> timeinfo.infHere, “timeinfo.inf” contains date & time details ie., when script is executed and history related to execution.
15. How do you find out drive statistics ? - iostat -E
16. Display disk usage in Kilobytes ? - du -k
17. Display top ten largest files/directories ? - du -sk * sort -nr head
18. How much space is used for users in kilobytes ? - quot -af
19. How to create null file ? - cat /dev/null > filename1
20. Access common commands quicker ? - ps -ef grep -i $@
21. Display the page size of memory ? - pagesize -a
22. Display Ethernet Address arp table ? - arp -a
23. Display the no.of active established connections to localhost ? - netstat -a grep EST
24. Display the state of interfaces used for TCP/IP traffice ? - netstat -i
25. Display the parent/child tree of a process ? - ptree Example: ptree 1267
26. Show the working directory of a process ? - pwdx Example: pwdx 1267
27. Display the processes current open files ? - pfiles Example: pfiles 1267
28. Display the inter-process communication facility status ? - ipcs
29. Display the top most process utilizing most CPU ? - top –b 1
30. Alternative for top command ? - prstat -a

WebLogic Realtime Issues 22.SEP.2009

1)

Weblogic Server Administration Tools

Hi Dear Friend

what are the Weblogic server Administration and Monitoring tools available list out plz ?
in my project we are using uptime,jprofile,visualGC,JUnit ,

Most popular tools are WLST, JManage, Sitescope, Foglight, Weblogic

Spotlight...

2) What could be the process for WLS 9.x?

What is the way for the removing the managed servers from the

WLS9.x ? Is it different or same?

Sol:

It is same, just some different features on the console where you lock
and edit and select the managed server to delete it

4) how to Remove Managed Servers in a cluster

I have one task,in one of our Environment we have 8 managed servers on one cluster 4 are in one box, another 4 are 2nd solaris box, I need to remove the 2 managed servers in each box

how to remove the managed servers, we need Edit the config.xml? and how..

appication and JMS bridges and Queues are deployed on All manged servers..

how much time taking for this task...

any on can you help me..

Thanks in advance..
When you delete a server, WebLogic Server removes its associated configuration data from the domain's configuration file (config.xml). To see which data will be deleted, select the server in the left pane of the Administration Console. All of the data in the right pane will be deleted. For example, any network channels that you created for the server are deleted, but applications and EJBs that are deployed on the server will not be deleted.

You cannot delete a server that is currently active; therefore, you cannot use the Administration Console to delete the Administration Server. (The Administration Console runs on the Administration Server.)

To delete a Managed Server:

1. Start the Administration Server.
2. In the left pane of the Administration Console, click on the name of the Servers folder.

The Servers page displays a list of servers that have already been defined in the domain.

3.On the Servers page, click the Delete icon Delete icon in the row of the server you want to delete.
4. Click Yes to confirm your deletion request.

NOTE: This is for WLS8.1

5) Please provide -Weblogic 9 username and password

Hi Experts,

I have installed Weblogic 9, on my home PC, when i click on the Start the admin console, its asking for username and password.

Do we have any default username and password to login in admin mode. If yes pls provide me with that.

Or do we have to get the username and password from some where else.

Please help me out, its urgent, i have to complete a project by month end.


Sol:
The username and password will the one which is being used while creating the domain using the configuration wizard. Else if u are using the example server or domain, you can have the credentials as:

UN: weblogic
PWD: weblogic

User name and pwd

UN :system
pwd:weblogic

SAP FI Errors and Probable Solutions

FI Errors and Probable Solutions

These are some of the issue for which probable solutions are given, hope they are helpful :

Scenario 1:

I have configured FBZP, Fi12 for house bank. But when I am doing payment run in F110 I am getting following error:

Company codes X1YZ/X1YZ do not appear in proposal 05/03/2006 REMI2.

Diagnosis

No data exists for the specified paying company code X1YZ and the specified sending company code X1YZ in payment proposal 05/03/2006 REMI2.

System response

The payment proposal cannot be edited.

Procedure

Check the flow trace and payment proposal list in order to determine why the specified company codes are not contained in the proposal

Solution :

* That’s generic error for payment run, check whether there are any due items as on date (tcode fbl1n). You can also change the baseline date there and rerun it. if you still get same error.. Check the proposal log, you will find the reason.

* Try to see first whether any open items exist. By using FBL1N.

Scenario 2:

How to make the payment through automatic payment program, through F-110 .What are the prerequisites?

Solution :

For Down payments to be paid using APP we have create a Down Payment request F-47.

Scenario 3:

While doing APP, after, " the payment proposal has been created message " if edit proposal is selected, I am getting the error as "Company code ABC/ABC do no appear in the proposal "

Solution :

This type of error comes when your Payment proposal doesn't have any items to process. Check the parameters and ensure invoices are due as on run date.

Scenario 4 :

While posting customer invoice (FB70) why system asks for G/L account? As per accounting rules customer is debited and Customer reconciliation a/c is credited that ends double entry book keeping rule. Why one more G/L account on top of Recon a/c, which is posted automatically?

Solution :

* Entry gets posted to Customer a/c through reconciliation account. You have to give a GL a/c for revenue.

Your entry would be
Customer (Reconciliation a/c) Dr
To Revenue Cr

* Reconciliation is a fictious entry so you cannot consider as an entry to be entered by the user. This rule is derived from the fact that 'we cannot enter/post directly to RECON account'.

That is why system needs a GL account to make the account balance as zero. Manual entry could be:

Customer a/c Dr
To Domestic Sales a/c
(Sales invoiced posted)

Recon entry is automatically made once you post this entry since you have configured your RECON in the IMG.

Scenario 5 :

I am unable to figure out how to attach my GL Accounts to my company code [copied chart of accounts, have my own company code, assigned my company code to the chart of accounts].

Solution :

You can attach the GL Accounts by just filling the details in the company code segment of the GL A/c. Hence you can use that gl a/c for your co code.
But that would be individually creating the accounts. Right?? How about creating all accounts at one shot. Create in FS00

Scenario 6 :

Difference between Standard Hierarchy and Alternate Hierarchy.

Solution :

Standard Hierarchy is basic structure of company but alternative hierarchy is just for reporting or temporary usage.

Scenario 7:

I have created depreciation keys (diminishing balance) and assigned to asset classes respectively. But at the time of asset master creation the system ask for Useful Life of the asset while my understanding is that in diminishing balance method there is useful life, just percentage is defined.

Solution :

Useful life is required for depreciation change. Normally a company with WDV depreciation may want to write off its assets which have crossed their useful life in 2 or 3 installments. This is achieved by depreciation change, where after useful life, a new method takes over.

Scenario 8 :

I have some conceptual problem in Internal Order.

Solution :

Internal order can only take a statistical posting & cost centre shall take a true posting when the relevant internal order is defined as statistical I/O IN T. code KO01(CONTROL DATA ) tab. So while making a posting in FB50 and assigning both I/O & COST CENTRE as relevant cost object in the transaction you shall get the stated status of these 2 cost object.

Scenario 9 :

In fb50, in the details tab, only if I tick 'calculate tax' will the tax get calculated.
Our user wants this to happen always (by default), i.e. he does not want to tick this for each transaction. Is there any setup to be done for the tax to get calculated always?

Solution :

Even now you are not clear. T_Code FB50 is used for posting GL account only. I fail to understand how you can calculate tax which is generally from purchase / vendor or Sales / Customer oriented through FB50.

In case of local distribution, if we forget to pay taxes on certain items and we need to pass tax entries, then such a case is needed. This can be achieved thru default parameter id for that particular user through transaction code SU3.

In SU3, in Parameters Tab put "XTX" in Parameter ID column and in Parameter Value column put "X".

Scenario 10 :

We have an issue here where by the system is calculating the tax for an invoice with a wrong tax base amount. How do i change the tax base amount? I get the tax rates from VERTEX and they are showing right. Where does the system pull this tax base amount for an Invoice and how can I change it.

Solution :

Kindly check this:
spro - financial accounting - f.a global setting - with holding setting - extended with holding setting -- calculation -- with holding tax type .

Check your withholding tax type, go in it and check the setting.

Useful JAVA interview Questions


Ques.1>How an Abstract class can be defined?


Ans>A class having abstract method (i.e. not having a definition/body) is termed Abstract class and they cannot be instantiated or simply we cannot create object of this classes.

Eg.abstract class testAbstrctClass

{
protected String allString;
public String getAllString()

{
return allString;
}
public abstract string anyAbstrctFunc();
}

Ques.2>Define an Interface?

Ans>Interface defines the methods but does not implement them. A class that implements them is bound to implement all the methods defined in the interface.

For example: public interface testInterface

{
public void func1();

public void funs2();

}

Ques.3>In how many ways we can create an object? Explain with example.

Ans.>When we create a class, we are creating a new user data type and using this type we create objects. This can be done in one way i.e. using 'new’ operator which dynamically allocates memory for an object and returns a reference i.e. memory address to it.

For example: class_name x=new class_name;

Where, class_name is the class name and x is the object.


Ques.4>In Real time when do we go for Abstract classes and when do we go for Interfaces? How a class implements an interface?

Ans> When we don’t want to reveal the implementation logic of the method we use interface else we can use abstract class which consists of some implemented and some unimplemented methods.

The class must define all of the methods in the interface in its own way and a class can use an interface by the implements clause like

ClassA implements InterfaceTest{….body}

Ques.5>What is Collection API?

Ans>The Collection API as the term suggests is a group of interfaces along with classes all together supporting operations on collections of objects. If they are used properly they can be more flexible, powerful and regular than arrays, vectors and hash tables.

E.g. of classes: HashSet, HashMap, ArrayList, LinkedList, TreeSet and TreeMap.

E.g. of interfaces: Collection, Set, List and Map.

Ques.6>What is the meaning of supplying String type arguments to main method?

Ans.>String type argument declares a parameter named args, which is an array of instances of the class String. Objects of type String store character strings. In some scenario direct input is required from the OS level by the user which can be done by this as it incorporates the use of command line argument. The syntax is given below:

Suppose to call a program named traceIP with a command line argument as 178.23.45.89

We will call it as: traceIP 178.23.45.89 (then enter)

Ques.7>What should happen if the same access specifier repeats more than once within a class? What modifiers are allowed for methods in an Interface?

Ans.>By the help of encapsulation we can control the access of the members of the class. If we use same access specifier for classes in the same program then we might have some problem but it is not the same if all the methods in a particular class use the same.

We can use public and abstract modifiers for the methods in an interface.

Ques.8>What is the difference between unchecked and checked Exceptions?

Ans.>All primitive Java exceptions are either a checked or unchecked exception. Both are defined in java.lang. Unchecked exceptions are those which do not check to see if a method handles and throws the exceptions. Checked exception are those which can generate one of the exceptions but does not handle by it itself.

E.g. of unchecked exception: ArithmeticException, ArrayStoreException.

E.g. of checked exception: ClassNotFoundException, InterruptedException.

Ques.9>What is method overriding?

Ans.>When a method in a subclass has the same name and signature as a method in its baseclass, then the method in the derivedclass is said to override the method in the baseclass. Method overriding occurs only when the names and the signatures of the two methods are identical; if they are not then they are simply overloaded. It is another way by which polymorphism is implemented by java.


Ques.10>what is synchronization and why is it important?

Ans.>Synchronization is the capability to control the access of multiple threads to common resources. Without synchronization, it is possible for one thread to modify a shared object while another thread is in the process of using or updating that object's value, which might lead to some erroneous results. Synchronized method enables us to write very clear multithreaded code as it is an inbuilt Java feature.

Ques.11>What is serialization?

Ans.>The process of writing a byte stream state is called as serialization. This is useful when we want to save the state of our program to a persistent storing area. These objects may be restored later using the process of deserialization. Remote Method Invocation (RMI) is needed to implement which in turn will allow a Java object on one machine to invoke a method of a Java object on a different machine. The sending machine serializes the object and transmits it and the receiving machine desterilizes it.

Ques.12>What is finalization and what is its purpose?

Ans.>Sometimes an object will need to perform some action when it is destroyed, to handle such situation; Java provides a mechanism called ‘finalization’. By using finalization, we can define specific actions that will occur when an object is just about to be cleaned by the gc or garbage-collector. The runtime of Java calls this method whenever it is about to clean an object of that class.

For example:-

protected void finalize()

{

//enter your finalize codes in here

}

Ques.13>What is gc or garbage collection and how can you force garbage collection?

Ans.>In order to clean objects and free memory space, Java handles this de-allocation technique automatically using the gc or garbage collection. When an object is idle and not referring to any memory/references, that object is no longer needed; gc frees such memory space by de allocating those objects.

We can run the garbage collector in our code by calling the gc() method. Better way is to try to call gc() first and then call freeMemory() to get a proper memory usage.


Ques.14>What is method overloading?

Ans.>When two or more methods within the same class having different signatures but share the same name, then in that case the methods are said to be overloaded, such process is termed as method overloading. This is how Java implements static polymorphism.

E.g. class class_name {

void method_name (){

//method logic

}

void method_name (parameters){

//method logic

}

}

Weblogic Realtime Interview Questions

These two questions very much important for me:
--------------------------------
1) What are your daily day to day activities?
2) Describe the real time problems that u faced in your administration
Career?
--------------------------------
3) Did u work with any tools which helps you to see the heap dump or
thread dump?
4) What is 202 error, 500 server error?
5) What is the generalized approach for Migration?
6) What is the difference between L1, L2, and L3?
The user submitted the request,
7) When that request is on processing in the middle the server
Crashes then what happens?
8) How do you verify that you are using Horizontal clusters not a
Vertical cluster?
9) What is vertical and horizontal scaling and their Advantages and
Dis-advantages (Key points)?
10) How to check the multiple NIC in Unix or Linux?
11) To specify the weight of a cluster member in which file we have to
Modify?
12) How do you find memory leaks? At what situation memory leaks
Occur –Give any examples? Is there any tool to find memory
leaks?


What are u r day to day activites
1)
-Web logic servers monitoring,
-Health check,
-JVM monitoring, GC pattern analysis,
-WLS logs,
-DB connection, Heap, Threads monitoring
- System CPU, memory monitoring
2)
JVM run as -server compiler, Xms, Xmx,
NewSize(1/4th of Xmx) ,MaxpermSize, Permsize,
GC collection policy, Large memory pages,Heap dump etc

3)
WLS run as production mode,
Xms=Xmx, Define Permsize,
Enable verboseGC,
JDBC initial pool=Max pool size,Pool sixe>=sum of thread counts,Use prepared statement cache,
define server reload and jsp page check =-1,
Enable native IO,Cluster group define,
Use memory replication,
Separate multicat addresss for each cluster.
Do not add admin sever to cluster,donot target anything to admin server. etc.


3 good interview questions which i came across recently :

1) Consider box1 has node manager, admin server1 and managed server 1 & box2 has managed server 2. Managed server 1 and managed server 2 are in cluster, on which box will the cluster be present, box1 or box2??

2) What will be the effect if multicast ip is duplicated for 2 different
applications in a network??

3) What is the maximum memory limit in web logic??

4) What is the maximum limit of Heap?

5) What is xss?

Max limit of heap should ideally be about 80-85% of available RAM on the machine

QTP Interview Questions

http://hotfile.com/dl/12270901/9287303/QTP_Realtime_Interview_Questions.doc.html

http://hotfile.com/dl/12271065/681dcd0/QTP-FAQ1.doc.html

http://hotfile.com/dl/12271126/4930a0c/QTP_FAQ2.doc.html

http://hotfile.com/dl/12271165/9b142a4/Qtp-Interview-Questions.doc.html

Sed ( Special Editor Tool )

http://www.ziddu.com/download/6472872/SedSpecialEditorTool.doc.html

SAP Resume Builder

http://www.ziddu.com/download/6472734/SAPResumeBuilder.rar.html

Weblogic Administration Full Material in PDF Format

http://www.ziddu.com/download/6472690/WeblogicAdministrationFullMaterialinPDFFormat.rar.html

The C Book

http://www.ziddu.com/download/6471898/the_c_book.pdf.html

SAP FICO QUESTIONS & ANSWERS

http://www.ziddu.com/download/6471819/SAPFICOQUESTIONSANSWERS.pdf.html

Perl with Oracle

http://www.ziddu.com/download/6471787/perlwithOracle.doc.html

Indian baby names (Boys & Girls)

http://www.ziddu.com/download/6471745/IndianbabynamesBoysGirls.xls.html

C++ Class room PPTs

http://www.ziddu.com/download/6471723/CClassroomPPTs.rar.html

AWK Programming Screenshots

http://www.ziddu.com/download/6471616/AWKSCREENSHOTS.rar.html

UNIX Material Powerpoint

http://www.ziddu.com/download/6471237/Unix.ppt.html

Data Ware housing Interview Question sAnswers

http://www.ziddu.com/download/6464219/DataWarehousingInterviewQuestionsAnswers.pdf.html

Informatica interview questions

http://www.ziddu.com/download/6464195/Informaticainterviewquestions.pdf.html

Data-Warehouse-Material-Concepts

http://www.ziddu.com/download/6464140/Data-Warehouse-Material-Concepts.doc.html

Informatica Power points

http://www.ziddu.com/download/6464124/Informaticappt.ppt.html

Teradata-Questions

http://www.ziddu.com/download/6464107/Teradata-Questions.pdf.html

Teradata -Real-Time -Questions

http://www.ziddu.com/download/6464103/Teradata-Real-Time-Questions.pdf.html

Interview Questions Bible

http://www.ziddu.com/download/6464084/Interview-Questions-Bible.doc.html

Microsoft-SQL-Server-Interview-Questions-Answers

http://www.ziddu.com/download/6464067/Microsoft-SQL-Server-Interview-Questions-Answers.pdf.html

SQL SERVER DB FAQs and Tips

http://www.ziddu.com/download/6464052/SQLSERVERDBFAQsandTips.doc.html

SQL - Frequently asked Questions

http://www.ziddu.com/download/6464043/sql-faqsprint.pdf.html

SQL Interview Questions with Answers

http://www.ziddu.com/download/6464029/SQL-Interview-Questions-with-Answers.doc.html

SQL-Server-Database-Interview-Questions

http://www.ziddu.com/download/6464005/SQL-Server-Database-Interview-Questions.pdf.html

SQL-Server-Interview-Questions-Answers

http://www.ziddu.com/download/6463993/SQL-Server-Interview-Questions-Answers.pdf.html

50 Basic Interview Questions

http://www.ziddu.com/download/6463967/50interviewqas.pdf.html

Interview Questions on UNIX

http://www.ziddu.com/download/6463950/Asked-Question-on-UNIX.doc.html

Unix Linux-Basic-interview-question

http://www.ziddu.com/download/6463943/UnixLinux-Basic-interview-question.pdf.html

UNIX-ADMIN-Interview-Ques

http://www.ziddu.com/download/6463940/UNIX-ADMIN-Interview-Ques-Only.doc.html

Solaris10 Solaris Tunable Parameters Reference Manual

http://www.ziddu.com/download/6463915/Solaris10SolarisTunableParametersReferenceManual.pdf.html

Solar-is-Basics Full book

http://www.ziddu.com/download/6463867/Solar-is-BasicsFullbook.pdf.html

Solaris-Admin-Interview-Questions-Answers

http://www.ziddu.com/download/6463852/Solaris-Admin-Interview-Questions-Answers.doc.html

Beginning UNIX

http://www.ziddu.com/download/6463846/Wrox.Beginning.Unix.Apr.2005.eBook-DDU.pdf.html

Solaris-10-Quick-Reference-Basic

http://www.ziddu.com/download/6463800/Solaris-10-Quick-Reference-Basic.pdf.html

Solaris-10-Quick-Reference-Advanced

This file contains important Solaris Commands with explanation.


http://www.ziddu.com/download/6463775/Solaris-10-Quick-Reference-Advanced.pdf.html

Unix-System-Adminstrator-Book

http://www.ziddu.com/download/6463719/Unix-System-Adminstrator-Book.pdf.html

Effective and Efficient Software Testing

http://www.ziddu.com/download/6463693/EffectiveandEfficientSoftwareTesting.pdf.html

Automated Testing Lifecycle Methodology

http://www.ziddu.com/download/6463641/AutomatedTestingLifecycleMethodology.pdf.html

Software Testing Guide Book

http://www.ziddu.com/download/6463560/softwaretestingguidebook.doc.html

Software-Testing-IQ

http://www.ziddu.com/download/6463513/Software-Testing-IQ.pdf.html

Testing Tools Material

http://www.ziddu.com/download/6463479/testing-tools-material.doc.html

Software Testing Manual

http://www.ziddu.com/download/6463451/Software-Testing-Manual.pdf.html

Testing - Methodologies

http://www.ziddu.com/download/6463439/Testing-Methdologies.ppt.html

TESTING Interview Questions & Answers

http://www.ziddu.com/download/6463405/TestingInterviewquestionsanswers.rar.html

SQL SERVER Generic Interview Questions

http://www.ziddu.com/download/6463376/GenericInterviewQuestions.pdf.html

SQL SERVER 2008 Interview Questions & Answers

http://www.ziddu.com/download/6463363/SQLServer2008InterviewQuestionsAnswers.pdf.html

SQL SERVER Interview Questions

http://www.ziddu.com/download/6463317/SQLSERVERInterviewQuestions.rar.html

Peoplesoft Interview Questions

http://www.ziddu.com/download/6463275/Peoplesoftinterviewquestions.doc.html

Weblogic Server Administration FAQs ( Interview Questions)

http://www.ziddu.com/download/6445981/faq.pdf.html

SAP ABAP FAQ( Interview Questions )

http://www.ziddu.com/download/6445805/abap-faq.zip.html

http://www.ziddu.com/download/6445806/ABAPTechnicalInterviewQuestions.doc.html

http://www.ziddu.com/download/6445807/ABAPQUESTIONS.doc.html

http://www.ziddu.com/download/6445808/ABAPFAQS.txt.html

SAP FICO Material

http://www.ziddu.com/download/6445749/FICO-NOTES.doc.html

Oracle Latest Dumps

http://www.ziddu.com/download/6445448/IZO-007-Latest.zip.html

Placement Consultants at Hyderabad

http://www.ziddu.com/download/6445421/PLACENENTSCONSULTANTSATHYD.rar.html

Oracle11g Database on Linux -Full material

http://www.ziddu.com/download/6445194/Oracle11g_-_Database_on_Linux.pdf.html

Beginning UNIX Complete Book

http://www.ziddu.com/download/6445147/Wrox.Beginning.Unix.Apr.2005.eBook-DDU.pdf.html

Beginning SQL Complete Book

http://www.ziddu.com/download/6445126/Wrox-BeginningSQL.pdf.html

Teach Yourself SQL in 21 Days

http://www.ziddu.com/download/6444730/TeachYourselfSQLin21Days.pdf.html

Introduction to UNIX complete book

http://www.ziddu.com/download/6444543/unix_book.pdf.html

Teach Yourself MYSQL in 21 Days

http://www.ziddu.com/download/6444323/MySQL.pdf.html

Unix for Oracle DBAs Pocket Reference

http://www.ziddu.com/download/6444027/ORACLEDBAONUNIX.pdf.html

SQL SERVER Interview Questions

http://www.ziddu.com/download/6443895/SQLSERVERInterviewQuestions.doc.html

Oracle DBA RMAN backup and recovery Doc

http://www.ziddu.com/download/6443848/BackupandRecoverywithRMAN.doc.html

Creating VIEWS and INDEX in ORACLE

http://www.ziddu.com/download/6443675/VIEWSINDEX.rar.html

Creating SCHEMAS and TABLES in ORACLE

http://www.ziddu.com/download/6443619/SCHEMASTABLES.rar.html

Creating TABLES and PACKAGES in ORACLE

http://www.ziddu.com/download/6443535/CREATABLE.doc.html

http://www.ziddu.com/download/6443536/PACKAGE.rar.html

Installation of Oracle 10g on Windows with Screenshots and Document

http://www.ziddu.com/download/6443385/ORACLEINSTALLATIONONWINDOWS.rar.html

Oracle DBA Important RMAN Docs

http://www.ziddu.com/download/6443181/Recovery_flowchart.bmp.html

http://www.ziddu.com/download/6443182/RMAN-Implementation.doc.html

http://www.ziddu.com/download/6443183/.html

Oracle DBA Important performance tuning Docs

http://www.ziddu.com/download/6443003/Tech_Tuning.zip.html

http://www.ziddu.com/download/6443004/Performance_Tuning.pdf.html

http://www.ziddu.com/download/6443005/TuningTheApplication.rtf.html

http://www.ziddu.com/download/6443006/Tuning_Tips_ppt.ppt.html

http://www.ziddu.com/download/6443007/oracle_beg_tuning.pdf.html

Oracle DBA Fundamental Interview questions & answers

http://www.ziddu.com/download/6442781/OracleDBAfunda1.doc.html

http://www.ziddu.com/download/6442783/OracleDBAfunda2.doc.html

http://www.ziddu.com/download/6442782/SQLFundamentalExamAnswers.doc.html

Oracle DBA useful tutorials

Hi friends here iam attaching few important useful oracle DBA documents.

Powered by Blogger