Basic Commands: Difference between revisions

From Try-AS/400
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:
| Creates a physical file for storing sources, f.e.<br/><tt>CRTSRCPF FILE(SOMELIBRARY/SOMEFILE) RCDLEN(112) TEXT('My file description')</tt>
| Creates a physical file for storing sources, f.e.<br/><tt>CRTSRCPF FILE(SOMELIBRARY/SOMEFILE) RCDLEN(112) TEXT('My file description')</tt>
| [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_71/ddp/rbae5crtsrcp.htm Details]
| [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_71/ddp/rbae5crtsrcp.htm Details]
| FILES
| Files
|-
|-
| DLTF
| DLTF
| Deletes a file, f.e.<br/><tt>DLTF FILE(SOMELIBRARY/SOMEFILE)</tt>
| Deletes a file, f.e.<br/><tt>DLTF FILE(SOMELIBRARY/SOMEFILE)</tt>
| [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_71/cl/dltf.htm Details]
| [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_71/cl/dltf.htm Details]
| FILES
| Files
|-
|-
| WRKMBRPDM
| WRKMBRPDM

Revision as of 11:17, 2 October 2019

This article describes the basic commands for easy reference. Even more can be found at IBM's documentation.

Command Short description Link to detailed description Category
CRTSRCPF Creates a physical file for storing sources, f.e.
CRTSRCPF FILE(SOMELIBRARY/SOMEFILE) RCDLEN(112) TEXT('My file description')
Details Files
DLTF Deletes a file, f.e.
DLTF FILE(SOMELIBRARY/SOMEFILE)
Details Files
WRKMBRPDM Work with source files using the Programming Development Manager Details Development
STRSEU Starts the source code editor. Details Development
SEU Source code Edit Utility Details
…and more useful…
Usage
Development
STRREXPRC Start a REXX script, f.e.:
STRREXPRC SRCMBR(SOMEMEMBER) SRCFILE(SOMEPHYSICALSOURCEFILE)
Details Development
CRTPGM Creates a program from source code Details Development
DSPUSRPRF Shows user profile, f.e.
DSPUSRPRF HKRETSCHME
Details Administration
DSPMSG Displays your messages, their origin might be another user or the compiler. Details Administration
STRSQL Start interactive SQL session
to view or change content of your databases.
Details Databases
STRDFU Start Data File Utility. Details Databases


See also