This Blog is all about ETL related Information.It gives information about Datastage ,Informatica,Oracle,SQL,PL/SQL ,Unix,Data warehousing ,Data Modeling and ER Model concepts and FAQ's
Showing posts with label Data Stage FAQ. Show all posts
Showing posts with label Data Stage FAQ. Show all posts
Tuesday
Data Stage Job Status Values
The Data Stage Job Status values can be found in
Datastage DsAdmin Questions related to Unix
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
Wednesday
Datastage DsAdmin Questions
- Have you created User groups and Users? $ group -c ourgroup $ group -m groupname userid $ group -o groupname userid $ group -O groupname userid # adduser --ingroup grname userid
- How to kill the process? $ ps $kill -9/-1 PID
- How to Unlock DataStage Jobs if the job is used by the another user or Hanged out?
su - dsadm {enter your password for dsadm, else you can use root} cd `cat /.dshome` . ./dsenv bin/uvsh list.readu {find the row that shows your lock, look over to the USERNO column and get that number} UNLOCK USER nnnnn ALL QUIT
- CD To $DSHOME/../Projects/ProjectName
- Type the Following and press Enger.
INSERT INTO VOC (F0, F1, F2, F3, F4, F5) VALUES ('UNLOCK','V', 'list_readu','E','BV','unlock')
- cd ${INSTALLATION_PATH}/DSEngine/bin
- ./dsenv
- ./uv -admin -stop
- How to Add Unlock command to Vocabulary file(VOC)? CD To $DSHOME/../Projects/ProjectName INSERT INTO VOC (F0, F1, F2, F3, F4, F5) VALUES ('UNLOCK','V', 'list_readu','E','BV','unlock')
- What is the command to Restart the DataStage Server? What is UV over there
- Tell me some problems you may encounter when the DataStage running on UNIX platforms? 1. Running out of file units, 2. Running out of memory(Heap error), 3. open connection, 4. ODBC connection problems.
- What is Heap Error? Anything to do with "heap" is about allocation of memory resources. Either install more memory in your server(s), or reduce overall demand for memory, perhaps by running less no. of jobs simultaneously, or by running on a configuration with less no. of processing nodes.
- What happens when you shut down the Datastage server without closing all client connections? There may be an open connection from a Datastage client, Without shutting down the client processes, sockets are released on most platforms after the timeout period of about 6 - 10 minutes, depending on system tuning.
- Which command is used to know whether the datastage server is running or not? ps -ef | grep dsrpc (this process should not be running when DataStage has stopped successfully) OR #netstat | grep dsrpcd
- How do you restart the failure job in sequencer using Administrator or Director? Sequence(Add check points on failure)
Saturday
Duke Consulting Tips & Tricks for Datastage
Kim Duke has been providing wonderful tips and tricks for Ascential Datastage.You can find and gain lot of information on extracing etl job statistics ,routines,basic shell scripting and much more at Duke Consulting Tips & Tricks
You can download all these documents and improve your job performance and capture job statistics.
The starting point for performance tuning is to get and track row counts. Rows per second is the leading indicator of problems. If rows start slowing down over time then why. EtlStats.zip conatins jobs and documentation to get row counts. We run this job at the end of each job sequence. The results are stored in Oracle. The DDL to create the tables is included. Also included is DSaveAsBmp.bat which will create bmp images for each job. Makes for great documentation.
- Get row counts on all jobs in a sequence, all jobs or just one job.
- Installing EtlStats.
- Sample reports from EtlStats. Sample records for ETL_QA tables.
- Jobs and routines to extract information about jobs.
- Documentation for routines
- Routines for Generate create table scripts from DS_METADATA.,Display metadata mismatches,Put a standard long description on a job. ,Get last warning message from log file,Get shell based on OS (DOS or SH),Compare first row of sequential file with column names to lengths.
- Backup all DataStage projects on a server.
- Korn Shell, Perl, Universe and Vi help files.
- Xml Best Practices
- Tech Tips From Ascential now IBM
Tuesday
Datastage Basic Commands to release jobs,Shutdown and retart Datastage client cmmands and basic Unix commands
1. What is the difference between root and non root install?
2. Have you created User groups and Users?
$ group -c ourgroup
$ group -m groupname userid
$ group -o groupname userid
$ group -O groupname userid
# adduser --ingroup grname userid
3. How to kill the process?
$ ps
$kill -9/-1 PID
4. How to Unlock DataStage Jobs if the job is used by the another user or Hanged out?
su - dsadm
{enter your password for dsadm, else you can use root}
cd `cat /.dshome`
. ./dsenv
bin/uvsh
list.readu
{find the row that shows your lock, look over to the USERNO column and get that number}
UNLOCK USER nnnnn ALL
QUIT
1. CD To $DSHOME/../Projects/ProjectName
2. Type the Following and press Enger.
INSERT INTO VOC (F0, F1, F2, F3, F4, F5) VALUES ('UNLOCK','V', 'list_readu','E','BV','unlock')
a. cd ${INSTALLATION_PATH}/DSEngine/bin
b. ./dsenv
c. ./uv –admin –stop
5. How to Add Unlock command to Vocabulary file(VOC)?
CD To $DSHOME/../Projects/ProjectName
INSERT INTO VOC (F0, F1, F2, F3, F4, F5) VALUES ('UNLOCK','V', 'list_readu','E','BV','unlock')
6. What is the command to Restart the DataStage Server?
What is UV over there
7. Tell me some problems you may encounter when the DataStage running on UNIX platforms?
1. Running out of file units, 2. Running out of memory(Heap error), 3. open connection, 4. ODBC connection problems.
8. What is Heap Error?
Anything to do with "heap" is about allocation of memory resources.
Either install more memory in your server(s), or reduce overall demand for memory, perhaps by running less no. of jobs simultaneously, or by running on a configuration with less no. of processing nodes.
9. What happens when you shut down the Datastage server without closing all client connections?
There may be an open connection from a Datastage client, Without shutting down the client processes, sockets are released on most platforms after the timeout period of about 6 - 10 minutes, depending on system tuning.
10. Which command is used to know whether the datastage server is running or not?
ps –ef | grep dsrpc (this process should not be running when DataStage has stopped successfully)
OR
#netstat | grep dsrpcd
11. How do you restart the failure job in sequencer using Administrator or Director?
Sequence(Add check points on failure)
1. What does the pkgadd command do?
2. How do you create a solaris package?
3. How do you view shared memory statistics?
4. How do you get system diagnostics information?
5. What is OBP and how do you access it?
6. What is LOM and how do you access it?
7. What is VTS?
8. What is an alternative to the “top” command on Solaris?
9. What is /etc/system for?
10. What does ndd do?
11. What does init 5 do?
12. What does init 0 do?
13. How do you boot from CD-ROM?
14. What is jumpstart?
15. How do you boot from a Network with jumpstart?
16. What is JASS?
17. What is the difference between NFS version 2 and NFS version 3?
18. What is RPC? Why do I need it?
19. Are kernel parameters tunable during runtime?
20. What does fmthard do?
21. Job Scheduling; mainly crontab, at, batch command
22. Backup stetegy; incremental, full system back up; diff between tar & ufsdump
23. diff between hard link & softlink
24. How to list only the directories inside a directory (Ans. ls -l|grep "^d")
25. RAID levels; pros & cons of diffrent levels; what is RAID 1+0
26. How to recover a system whose root password has lost?
27. What is a daemon?
28. How to put a job in background & bring it to foreground?
29. What is default permissions for others in a file?
30. Questions on shell initialization scripts?
31. Questions on restricted shell
32. What is diff betwn grep & find?
33. What is egrep?
34. Questions on shell programming
35. What is a pipe?
36. Questions on Solaris patch management like pkgadd etc
37. Questions on file system creation; actually what happens when we create a file system?
38. Questions on RBAC? what is a role accound & what is a profile?
39.From command line how will you add a user account? the full command will all arguments.
40.Fs it advisable to put a swap partion in RAID1 (mirroring?) pros & cons?
41. List the files in current directory sorted by size ?
- ls -l | grep ^- | sort -nr
42. List the hidden files in current directory ?
- ls -a1 | grep "^\."
43. Delete blank lines in a file ?
- cat sample.txt | grep -v ‘^$’ > new_sample.txt
44. 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.
45. 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.
46. Display the Disk Usage of file sizes under each directory in currentDirectory ?
- du -k * | sort .nr (or) du .k . | sort -nr
47. Change to a directory, which is having very long name ?
- cd CDMA_3X_GEN*Here original directory name is . .CDMA_3X_GENERATION_DATA..
48. Display the all files recursively with path under current directory ?
- find . -depth -print
49. 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.
50. Display the processes, which are running under yourusername ?
- ps .aef | grep MaheshvjHere, Maheshvj is the username.
51. 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.
52. Display the files in the directory by file size ?
- ls .ltr | sort .nr .k 5
53. How to save man pages to a file ?
- man | col .b > Example : man top | col .b > top_help.txt
54. 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.
55. How do you find out drive statistics ?
- iostat -E
56. Display disk usage in Kilobytes ?
- du -k
57. Display top ten largest files/directories ?
- du -sk * | sort -nr | head
58. How much space is used for users in kilobytes ?
- quot -af
59. How to create null file ?
- cat /dev/null > filename1
60. Access common commands quicker ?
- ps -ef | grep -i $@
61. Display the page size of memory ?
- pagesize -a
62. Display Ethernet Address arp table ?
- arp -a
63. Display the no.of active established connections to localhost ?
- netstat -a | grep EST
64. Display the state of interfaces used for TCP/IP traffice ?
- netstat -i
65. Display the parent/child tree of a process ?
- ptree Example: ptree 1267
66. Show the working directory of a process ?
- pwdx Example: pwdx 110
67. Display the processes current open files ?
- pfiles Example: pfiles 1267
68. Display the inter-process communication facility status ?
- ipcs
69. Display the top most process utilizing most CPU ?
- top .b 1
70. Alternative for top command ?
- prstat -a
Ascential Data Stage FAQ's
Q. What is the architecture of Data Stage
A. Client Server Architecture
Q. What are the components of Client and explain them?
A.Designer, Director, Manager, Administrator
Q.What is the difference between ODBC Stage and OCI Stage
A. In ODBC Stage user can connect to any data base and through OCI Stage user can connect to Oracle Database only. If user uses ODBC Stage than DSN name should be create in Data Source.
Q.What is a Passive and Active Stage? Give Example
A. If the data changes from in put to out put than it is an active stage else it is a passive stage. Transformer Stage is an Active stage while Hash Stage is a passive stage.
Q.How to find the length of a String?
A. By using Len function user can find out the length of the sting.
Q.What is the format for if-Else Block
A. If Column1 > 100 Then "A" Else "B"
Q.How do u concatenates two values.
A. The concatenation operator is “:”
Q.Where you define the job parameter.
A. The job parameter is defined in the job->Edit->job Properties. Than click the Job Parameter Menu.
Q.How to use the parameter in a job?
A. To use the defined job parameters, you must specify them when you edit a stage. When you edit any of the fields for which you wish to use a parameter, enter #Param#, where Param is the name of the job parameter.
Q.How to convert the string into uppercase.
A. To convert the string into uppercase we need to use UPCASE function
E.g. String a=My Value;
UPCASE (a) =MYVALUE;
Q.But how to convert lower case?
A. DOWNCASE (a) =my value;
Q.How to get a substring from a string.
A. String a=My Value;
If user wants first three character than the function is
Substrings (a, 1, 3);
Q.How do u schedules a job?
Q.How to create a sequence in Data stage job?
A. By using the KeyMgtGetNextValue.This is present in the category SDK/KeyMgt
Q.How many number of input link will be used in transformer stage?
A. Transformer stages in server jobs can have one primary input link, but there can be any number of reference inputs.
Q.What is the use of Transformer Stage?
A. Transformer stages do not extract data or write data to a target database. They are used to handle extracted data, perform any conversions required, and pass data to another Transformer stage or a stage that writes data to a target data table.
Q.Where user can write custom routine?
A. The user can write custom routine in Manager.
Q.Have ever writes any routine? If yes explain.
Q.What is the difference between Stage Variable and System Variable?
A.DataStage provides a set of variables containing useful system information that you can access from a transform or routine. System variables are read-only. All System Variable starts with @.Some of the System variables are
@DATE the internal date when the program started. See the Date function.
@DAY The day of the month extracted from the value in @DATE.
@FALSE The compiler replaces the value with 0.
@INROWNUM Input row counter. For use in constrains and derivations in Transformer stages.
@OUTROWNUM Output row counter (per link). For use in derivations in Transformer stages.
@LOGNAME The user login name.
@MONTH The current extracted from the value in @DATE.
@NULL the null value.
@NULL.STR The internal representation of the null value, Char (128).
@NUMPARTITIONS In a parallel Transformer stage output derivation gives the total number of partitions for the stage.
@PARTITIONNUM In a parallel Transformer stage output derivation gives the partition number for the particular instance.
@PATH The pathname of the current Data Stage project.
@SCHEMA The schema name of the current Data Stage project.
@SM A sub value mark (a delimiter used in UniVerse files), Char(252).
@SYSTEM.RETURN.CODE
Status codes returned by system processes or commands.
@TIME The internal time when the program started. See the Time function.
@TM A text mark (a delimiter used in UniVerse files), Char(251).
@TRUE The compiler replaces the value with 1.
@USERNO The user number.
@VM A value mark (a delimiter used in UniVerse files), Char(253).
@WHO The name of the current DataStage project directory.
@YEAR The current year extracted from @DATE.
But Stage variables created by the user. It executes first while running.It is defined inside the transformer stage. In this user will see the stage varaible window and he can defines there.
Data Stage FAQ's
1 What is the flow of loading data into fact & dimensional tables?
Fact table - Table with Collection of Foreign Keys corresponding to the Primary Keys in Dimensional table. Consists of fields with numeric values. Dimension table - Table with Unique Primary Key...
2 What is the default cache size? How do you change the cache size if needed?
Default cache size is 256 MB. We can incraese it by going into Datastage Administrator and selecting the Tunable Tab and specify the cache size over there.
3 What is Modulus and Splitting in Dynamic Hashed File?
In a Hashed File, the size of the file keeps changing randomly. If the size of the file increases it is called as "Modulus". If the size of the file decreases it is called as "...
4 What does a Config File in parallel extender consist of?
Config file consists of the following. a) Number of Processes or Nodes. b) Actual Disk Storage Location.
5 What are types of Hashed File?
Hashed File is classified broadly into 2 types. a) Static - Sub divided into 17 types based on Primary Key Pattern. b) Dynamic - sub divided into 2 types i) Gen...
6 What are the difficulties faced in using DataStage ? or what are the constraints in using DataStage ?
7 What are Stage Variables, Derivations and Constants?
Stage Variable - An intermediate processing variable that retains value during read and doesnt pass the value into target column. Derivation - Expression that specifies value to be passed o...
8 Types of vies in Datastage Director?
There are 3 types of views in Datastage Director a) Job View - Dates of Jobs Compiled. b) Log View - Status of Job last run c) Status View - Warning Messages, Event Messages, Program G...
9 Types of Parallel Processing?
Parallel Processing is broadly classified into 2 types. a) SMP - Symmetrical Multi Processing. b) MPP - Massive Parallel Processing.
10 Orchestrate Vs Datastage Parallel Extender?
Orchestrate itself is an ETL tool with extensive parallel processing capabilities and running on UNIX platform. Datastage used Orchestrate with Datastage XE (Beta version of 6.0) to incorporate the p...
11 Importance of Surrogate Key in Data warehousing?
Surrogate Key is a Primary Key for a Dimension table. Most importance of using it is it is independent of underlying database. i.e Surrogate Key is not affected by the changes going on with a databas...
12 How to run a Shell Script within the scope of a Data stage job?
By using "ExcecSH" command at Before/After job properties.
13 How to handle Date convertions in Datastage? Convert a mm/dd/yyyy format to yyyy-dd-mm?
We use a) "Iconv" function - Internal Convertion. b) "Oconv" function - External Convertion. Function to convert mm/dd/yyyy format to yyyy-dd-mm is Oconv(Iconv...
14 How do you execute datastage job from command line prompt?
Using "dsjob" command as follows. dsjob -run -jobstatus projectname jobname
15 Functionality of Link Partitioner and Link Collector?
Link Partitioner : It actually splits data into various partitions or data flows using various partition methods . Link Collector : It collects the data coming from partitions, merges ...
16 Dimensional modelling is again sub divided into 2 types.
a)Star Schema - Simple & Much Faster. Denormalized form. b)Snowflake Schema - Complex with more Granularity. More normalized form.
17 Differentiate Primary Key and Partition Key?
Primary Key is a combination of unique and not null. It can be a collection of key values called as composite primary key. Partition Key is a just a part of Primary Key. There are several methods of ...
18 Differentiate Database data and Data warehouse data?
Data in a Database is a) Detailed or Transactional b) Both Readable and Writable. c) Current.
19 Containers : Usage and Types?
Container is a collection of stages used for the purpose of Reusability. There are 2 types of Containers. a) Local Container: Job Specific b) Shared Container: Used in any job wit...
20 Compare and Contrast ODBC and Plug-In stages?
ODBC : a) Poor Performance. b) Can be used for Variety of Databases. c) Can handle Stored Procedures. Plug-In: a) Good Performance. b) Database specific.(Only one database) <...
21 Dimension Modelling types along with their significance
Data Modelling is Broadly classified into 2 types. a) E-R Diagrams (Entity - Relatioships). b) Dimensional Modelling.
Data Stage FAQ's -1
11 What are types of Hashed File?
Hashed File is classified broadly into 2 types. a) Static - Sub divided into 17 types based on Primary Key Pattern. b) Dynamic - sub divided into 2 types i) Gen...
12 Containers : Usage and Types?
Container is a collection of stages used for the purpose of Reusability. There are 2 types of Containers. a) Local Container: Job Specific b) Shared Container: Used in any job wit...
13 Compare and Contrast ODBC and Plug-In stages?
ODBC : a) Poor Performance. b) Can be used for Variety of Databases. c) Can handle Stored Procedures. Plug-In: a) Good Performance. b) Database specific.(Only one database) <...
14 How to run a Shell Script within the scope of a Data stage job?
By using "ExcecSH" command at Before/After job properties.
15 How to handle Date convertions in Datastage? Convert a mm/dd/yyyy format to yyyy-dd-mm?
We use a) "Iconv" function - Internal Convertion. b) "Oconv" function - External Convertion. Function to convert mm/dd/yyyy format to yyyy-dd-mm is Oconv(Iconv...
16 Types of Parallel Processing?
Parallel Processing is broadly classified into 2 types. a) SMP - Symmetrical Multi Processing. b) MPP - Massive Parallel Processing.
17 What does a Config File in parallel extender consist of?
Config file consists of the following. a) Number of Processes or Nodes. b) Actual Disk Storage Location.
18 Functionality of Link Partitioner and Link Collector?
Link Partitioner : It actually splits data into various partitions or data flows using various partition methods . Link Collector : It collects the data coming from partitions, merges ...
19 How did u connect to DB2 in your last project?
Using DB2 ODBC drivers.
20 What are OConv () and Iconv () functions and where are they used?
IConv() - Converts a string to an internal storage formatOConv() - Converts an expression to an output format.
21 What are Routines and where/how are they written and have you written any routines before?
Routines are stored in the Routines branch of the DataStage Repository, where you can create, view or edit. The following are different types of routines: 1) Transform functions&nb...
22) Dimension Modelling types along with their significance
Data Modelling is Broadly classified into 2 types.
a) E-R Diagrams (Entity - Relatioships).
b) Dimensional Modelling.
23) Dimensional modelling is again sub divided into 2 types.
a)Star Schema - Simple & Much Faster. Denormalized form.
b)Snowflake Schema - Complex with more Granularity. More normalized form.
24) Importance of Surrogate Key in Data warehousing?
Surrogate Key is a Primary Key for a Dimension table. Most importance of using it is it is independent of underlying database. i.e Surrogate Key is not affected by the changes going on with a databas...
25) Differentiate Database data and Data warehouse data?
Data in a Database is
a) Detailed or Transactional
b) Both Readable and Writable.
c) Current.
26) What is the flow of loading data into fact & dimensional tables?
Fact table - Table with Collection of Foreign Keys corresponding to the Primary Keys in Dimensional table. Consists of fields with numeric values.
Dimension table - Table with Unique Primary Key...
27) Orchestrate Vs Datastage Parallel Extender?
Orchestrate itself is an ETL tool with extensive parallel processing capabilities and running on UNIX platform. Datastage used Orchestrate with Datastage XE (Beta version of 6.0) to incorporate the p...
28) Differentiate Primary Key and Partition Key?
Primary Key is a combination of unique and not null. It can be a collection of key values called as composite primary key. Partition Key is a just a part of Primary Key. There are several methods of ...
29) How do you execute datastage job from command line prompt?
Using "dsjob" command as follows.
dsjob -run -jobstatus projectname jobname
30) What are Stage Variables, Derivations and Constants?
Stage Variable - An intermediate processing variable that retains value during read and doesnt pass the value into target column.
Derivation - Expression that specifies value to be passed o...
31) What is the default cache size? How do you change the cache size if needed?
Default cache size is 256 MB. We can incraese it by going into Datastage Administrator and selecting the Tunable Tab and specify the cache size over there.
Subscribe to:
Posts (Atom)