SAP Basis snippets #7
How to unlock DDIC user
Search for a command to run...
How to unlock DDIC user
saplikey command
Installing license via telnet
Sybase DB start/stop commands First switch to the syb<sid> user su - syb<sid> Logon to the isql interface isql -U <username> -P <password -S <SID> To stop the sybase db, use the below command shutdown Execute ‘go’ after ‘shutdown’ command, which c...
Start/Stop commands for MaxDB First switch to the sqd<sid> user su - sqd<sid> Then logon to database manager command line interface dbmcli -d <SID> -u <username>,<password> Once logged in to dbmcli using your details execute the below commands Stop...
Start and stop commands for Hana database
DB2 database operations In this post let’s look at some of the basic db2 database commands. • Logging into database su - db2<sid> All the below commands need to be executed as db2<sid> user • Checking db2 status db2pd - • Starting db2 db2start • Stop...
Every file/directory has three types of owners in Linux. The permissions for each of these 3 owners is represented in Numeric (group of octal representation) or symbolic representation. Symbolic Notation The Linux permissions are symbolically denoted...

In this post, we will be discussing the basic steps in building a machine learning project. The process of building an ML project includes collecting the dataset, cleaning it, processing the data, training and testing of the model and deploying it. A...