Category: Root
Apr 13
Examples: Data Science and Machine Learning Applications
• Stock Price Prediction • Covid19 spread prediction • Flu Spread Prediction • Predict when inflation will be lower • Healthcare which demographics are vulnerable for a specific disease • Predict/forecast doctors need in 10 years • Sales Forecast • Fraud Detection
Apr 09
MongoDB: Array Operations
Apr 09
Try: MongoDB Regular Expresssions
^ : starts with $ : Ends with .* : any char, any number of times /i : case insensitive Try the following Queries •db.posts.find( { title: { $regex: /4$/ } } ); •db.posts.find( { category: { $regex: /^T.*/ } } ); • db.posts.find( { category: { $not: /^p.*/ } } ); •db.posts.find( { category: …
Apr 09
Oracle Auditing
To Know: •WHAT IT IS? •WHY WE NEED •WHAT CAN WE AUDIT •WHAT ORACLE AUDITS ON Its OWN •WHERE AUDIT DATA ARE KEPT •HOW TO SET CUSTOM AUDIT •HOW TO SEE WHAT AUDITS ARE SET •HOW TO SEE THE AUDIT TRAIL Check: https://docs.oracle.com/cd/E11882_01/server.112/e10575/tdpsg_auditing.htm#TDPSG50511 Activity: Using Audit Trail Views to Investigate Suspicious Activities https://docs.oracle.com/cd/B19306_01/network.102/b14266/cfgaudit.htm#i1010026
Apr 04
Oracle pfile, spfile
Apr 04
Oracle : Auditing Database Activity
7 Auditing Database Activity This chapter contains: Ref: https://docs.oracle.com/cd/E11882_01/server.112/e10575/tdpsg_auditing.htm#TDPSG50511
Apr 03
Connect to Sql Server FROM JAVA
https://learn.microsoft.com/en-us/sql/connect/jdbc/connection-url-sample?view=sql-server-ver16