Skip to content

Commit

Permalink
Minor update to the post-processing file #183
Browse files Browse the repository at this point in the history
  • Loading branch information
PiJoCoder committed Oct 5, 2022
1 parent 61c34a7 commit 634f232
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sqlnexus/SQLNexus_PostProcessing.sql
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ BEGIN
END

--create a filter drivers table
if OBJECT_ID ('filter_driver_altitudes') IS NOT NULL
IF OBJECT_ID ('filter_driver_altitudes') IS NOT NULL
DROP TABLE filter_driver_altitudes
GO
CREATE TABLE filter_driver_altitudes (FilterType NVARCHAR(48), Minifilter NVARCHAR (64), Altitude bigint, Company NVARCHAR(128))
Expand Down Expand Up @@ -2085,3 +2085,6 @@ INSERT INTO filter_driver_altitudes VALUES ( 'Bottom' , 'wof.sys' , 40700 , 'Mic
INSERT INTO filter_driver_altitudes VALUES ( 'Bottom' , 'fileinfo' , 40500 , 'Microsoft' )
INSERT INTO filter_driver_altitudes VALUES ( 'Bottom' , 'WinSetupBoot.sys' , 40400 , 'Microsoft' )
INSERT INTO filter_driver_altitudes VALUES ( 'Bottom' , 'WinSetupMon.sys' , 40300 , 'Microsoft' )


--Update the tbl_fltmc_filters and tbl_fltmc_instances with addition info from lookup table above

0 comments on commit 634f232

Please sign in to comment.