Current Data set
Expected Result - Looking for oracle SQL script that will help me to Populate missing dates and carry/roll/copy IDs and Values for given ID.
`
Current Dataset- Has dates, ID and Values
Date | ID | Value
--------------------
2/4/17 | 3 | 4.4
2/4/17 | 9 | 6.2
2/9/17 | 3 | 4.7
2/9/17 | 4 | 7.4
2/9/17 | 9 | 9.4
2/11/17 | 3 | 9.7
2/11/17 | 7 | 12.4
`Expected Result - Looking for oracle SQL script that will help me to Populate missing dates and carry/roll/copy IDs and Values for given ID.
Expected Result
Date | ID | Value
--------------------
2/4/17 | 3 | 4.4
2/4/17 | 9 | 6.2
2/5/17 | 3 | 4.4
2/5/17 | 9 | 6.2
2/6/17 | 3 | 4.4
2/6/17 | 9 | 6.2
2/7/17 | 3 | 4.4
2/7/17 | 9 | 6.2
2/8/17 | 3 | 4.4
2/8/17 | 9 | 6.2
2/9/17 | 3 | 4.7
2/9/17 | 4 | 7.4
2/9/17 | 9 | 9.4
2/10/17 | 3 | 4.7
2/10/17 | 4 | 7.4
2/10/17 | 9 | 9.4
2/11/17 | 3 | 9.7
2/11/17 | 7 | 12.4

