Posts

Dev Ops Commands

  DevOPS 1. Git Commands Branch Branch is the separate flow where other people can work. When a branch is created from main or master then all the code of that point is copied to the branch. Any changes made in new branch will not affect in other branches. If the file is in the Workspace area then it will be visible to all the branches but once commit to a specific   branch then only those branch can see the file no other can Git branch => to show all the branches Git branch branch-name => creates new branch Git checkout branch-name => shift to given Branch Git merge branch-name => Used to merge the given branch name with the current working branch Git stash => Used to move the current untracked code into local storage avaliblabe stash so that we can work on something else. Then later when something else is done we can take out the unsaved code from stash Git stash list => used to show all the stash avaialbes Git stash apply stash index => used to rollback...

df

Image
 

DMDW Unit-1 Notes

Image
 1. Design guidelines for data warehouse implementation         Implementation Guidelines 1. Build incrementally:  Data warehouses must be built incrementally. Generally, it is recommended that a data marts may be created with one particular project in mind, and once it is implemented, several other sections of the enterprise may also want to implement similar systems. An enterprise data warehouses can then be implemented in an iterative manner allowing all data marts to extract information from the data warehouse. 2. Need a champion:  A data warehouses project must have a champion who is active to carry out considerable researches into expected price and benefit of the project. Data warehousing projects requires inputs from many units in an enterprise and therefore needs to be driven by someone who is needed for interacting with people in the enterprises and can actively persuade colleagues. 3. Senior management support:  A data warehouses p...

Multer

Image
Image