Advertisement
Guest User

log 5th week (marron) v3

a guest
Jun 30th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.23 KB | None | 0 0
  1. log (6/27/2016 - 7/1/2016)
  2.  
  3. ======
  4. monday
  5. ======
  6.  
  7. created stored procedures via transact-sql query
  8. • addNewCar - adds a new car entry in the Cars table
  9. • addNewCustomer - adds a new customer entry in the Customers table
  10. • addNewSupplier - adds a new supplier entry in the Suppliers table
  11. • deleteCarById - deletes a car entry in the Cars table with the id specified in the
  12.  
  13. parameter
  14. • deleteCustomerById - deletes a customer entry in the Customers table based by the id
  15.  
  16. specified in the parameter
  17. • deleteSupplierById - deletes a supplier entry in the Suppliers table based by the id
  18.  
  19. specified in the parameter
  20. • displayAllCustomers - shows all customers in the Customers table
  21. • displayAllSuppliers - shows all suppliers in the Suppliers table
  22. • editCustomerDetailsById - selects a customer in the Customers table based by its id and
  23.  
  24. edits all the column values of that row entry
  25. • editSupplierDetailsById - selects a supplier in the Suppliers table based by its id and
  26.  
  27. edits all the column valued of that row entry
  28. • selectAllCars - shows all cars in the Cars table
  29. • showAllCustomersAndSuppliers - shows a union table of the Customers and Suppliers table
  30. • updateCarDetailsById - selects a car in the Cars table based by its id and edits all the
  31.  
  32. column values of that row entry
  33. • updateCarPriceByBrandAndModel - selects a car in the Cars table based by its brand and
  34.  
  35. model and edits the price value of the car
  36.  
  37. renamed stored procedures
  38. • placeOrder - renamed to placeOrderById
  39. • placeOrder2 - renamed to placeOrder
  40.  
  41. altered stored procedures
  42. • listAllOrders - adjusted SELECT clause; now uses inner joins instad of referencing
  43.  
  44. multiple tables
  45. • placeOrder - added conditions that check whether parameter values are valid, in a sense
  46.  
  47. of the parameter values exist in each of their corresponding tables
  48.  
  49. created a trigger in the database via transact-sql query
  50. • detectInvalidSecondHand - triggers upon execution of INSERT statement in the Cars table;
  51.  
  52. will trigger when the inserted value for the year of the car is less than 2014 and the
  53.  
  54. value for the condition is 'Second Hand'
  55.  
  56. updated Promotions page in the MCC website
  57. • added new promotions in the website
  58. • created new ActionResult in the Promotions controller for each of the new promotions
  59. • created new views in the Promotions view for each of the new promotions
  60.  
  61. =======
  62. tuesday
  63. =======
  64.  
  65. created new trigger in the Cars table
  66. • detectInvalidRegistrationDate - triggers upon execution of stored procedure placeOrder
  67.  
  68. wherein it checks if the value of the dateRegistered is less than the year of the model
  69.  
  70. release
  71.  
  72. updated rewards page of mcc website
  73. • changed images of each of the rewards requested for update
  74. • updated rewards icon on rewards page
  75.  
  76. encoded tokens in the metrobank card mobile survey of customer satisfactory survey - mcc
  77.  
  78. finance
  79. • inserted 168 entries to the survey
  80.  
  81. =========
  82. wednesday
  83. =========
  84.  
  85. updated rewards and promotions page of mcc website
  86. • changed images of each of the rewards requested for update
  87. • fixed visual bugs found in the rewards page
  88. • deleted an obsolete promo item in the rewards page
  89.  
  90. fill up systems and applications register
  91. • added 120 new entries
  92. • added data for columns users, architecture, hardware, and database
  93. • verified contents of vendor column
  94. • added columns application server, web application, and database
  95. • added data for columns application server, web application, and database
  96.  
  97. ========
  98. thursday
  99. ========
  100.  
  101. 1. indexing (clustered, non clustered)
  102. 2. SARGable (queries)
  103. 3. common functions (cast, convert, isnull) ex. SELECT * from .. . where age is NOT NULL
  104. 4. views
  105. 5. functions *
  106. 6. temporary tables (memory-based tables)
  107. memory and physical
  108. vs cursors
  109. 7. keys (primary/foreign)
  110. 8. normalization (insertion of foreign keys)
  111. 9. other query optimizations
  112.  
  113. updated promotions and home page of mcc website
  114. • added new banner in home page
  115. • edited featured promotions on home page
  116. • updated pdf link for annual report
  117. • added new promotions in model, view, and controller
  118.  
  119. ======
  120. friday
  121. ======
  122.  
  123. Troubleshoot M Cert web application where error shows duplicate entries in web.config file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement