CanesFan95
Analog already is interoperable.
I just found a link on the FCC webpage that evidently has complete sets of data files containing ALL the licensing data. Evidently, this allows us to literally download the entire listing of all FCC licenses with all the data fields (frequency, licensee, callsign, etc.):
Daily Transaction Files: Downloads: Databases
This has the potential to be a goldmine of information for scanning purposes. I think the data sets that are most relevant for scanning is the one they call Land Mobile - Private and Land Mobile - Commercial. These are basically .zip files that contain .dat files with rows of data where each field is separated (delimited) by the pipe | character. They have other documents that explain the table, and one link that actually has SQL syntax to create the tables into a database schema. For example:
create table dbo.PUBACC_FR ( record_type char(2) null, unique_system_identifier numeric(9,0) not null, uls_file_number char(14) null, ebf_number varchar(30) null, call_sign char(10) null, frequency_action_performed char(1) null, location_number int null, antenna_number int null, class_station_code char(4) null, op_altitude_code char(2) null, frequency_assigned numeric(16,8) null, <SNIP>
So here's my question. There is a free program from Oracle called SQL Developer that lets you create and run your own database. Does anyone on here know if SQL Developer can work with the FCC .dat files to create a database and run SELECT queries on it? I think it would great to be able to create our own queries and get lists of stuff. For example, I could tell it to give me a list of all the active licenenses in county XYZ between 450 - 455 MHz.
Then export the Query results to Excel and save it. Now while you're searching around with the scanner and find an active frequency, you can just CTRL+F (search) that frequency in Excel and instantly find who / what it is. So will SQL Developer work with this, or is there some other database program we'd have to use?
Daily Transaction Files: Downloads: Databases
This has the potential to be a goldmine of information for scanning purposes. I think the data sets that are most relevant for scanning is the one they call Land Mobile - Private and Land Mobile - Commercial. These are basically .zip files that contain .dat files with rows of data where each field is separated (delimited) by the pipe | character. They have other documents that explain the table, and one link that actually has SQL syntax to create the tables into a database schema. For example:
create table dbo.PUBACC_FR ( record_type char(2) null, unique_system_identifier numeric(9,0) not null, uls_file_number char(14) null, ebf_number varchar(30) null, call_sign char(10) null, frequency_action_performed char(1) null, location_number int null, antenna_number int null, class_station_code char(4) null, op_altitude_code char(2) null, frequency_assigned numeric(16,8) null, <SNIP>
So here's my question. There is a free program from Oracle called SQL Developer that lets you create and run your own database. Does anyone on here know if SQL Developer can work with the FCC .dat files to create a database and run SELECT queries on it? I think it would great to be able to create our own queries and get lists of stuff. For example, I could tell it to give me a list of all the active licenenses in county XYZ between 450 - 455 MHz.
Then export the Query results to Excel and save it. Now while you're searching around with the scanner and find an active frequency, you can just CTRL+F (search) that frequency in Excel and instantly find who / what it is. So will SQL Developer work with this, or is there some other database program we'd have to use?