Jump to content

USCIS h1-b data hub


ekunadam_enkanna

Recommended Posts

22 minutes ago, LazyRohit said:

CI, CD ante enti all ready done or pending?

Renewals/transfers Approved/Denied stats

CA - H-1B petitions with anything other than “New employment” or “New concurrent employment” selected on Part 2, Question 2 of the Form I-129, whose first decision is an approval. This includes, for example, continuing employment, change of employer, and amended petitions.

CD - H-1B petitions with anything other than “New employment” or “New concurrent employment” selected on Part 2, Question 2 of the Form I-129 whose first decision is a denial. This includes, for example, continuing employment, change of employer, and amended petitions.

  • Upvote 1
Link to comment
Share on other sites

Just now, ekunadam_enkanna said:

BTW, you can load these csv files and import them into tables. Use sqlite3, then apply analytical functions.

 

^^

Link to comment
Share on other sites

1 minute ago, ekunadam_enkanna said:

BTW, you can load these csv files and import them into tables. Use sqlite3, then apply analytical functions.

 

emi chesukuntam bro ee data analyse chesi? 

Link to comment
Share on other sites

Quote

$ sqlite3 hokati.db
SQLite version 3.11.0 2016-02-15 17:29:24
Enter ".help" for usage hints.
sqlite> .mode csv
sqlite> .headers on
sqlite> create table h2019(year integer, employer text, ia integer, id integer, ca integer, cd integer, naics integer, taxid integer, state text, city text, zip integer);
sqlite> .import h1b_datahubexport-2019.csv h2019
sqlite> select count(employer) from h2019;
count(employer)
22502

 

Link to comment
Share on other sites

1 minute ago, snoww said:

Any column available in data for H1B dependent employer ? That will mostly give Desi Mesthris count 

Ah, that field comes from LCA forms. If we can find LCA csv files with that field,  join tables:)

Link to comment
Share on other sites

Another query. Find all employers, whose denials --both initial and continuous > 100

Quote

sqlite> select employer, id, cd from h2019 where id+cd > 100;
employer,id,cd
"DELOITTE CONSULTING LLP",564,165
"DELOITTE CONSULTING LLP",150,497
"DELOITTE & TOUCHE LLP",54,78
"COGNIZANT TECH SOLNS US CORP",217,996
"CAPGEMINI AMERICA INC",138,266
"TECH MAHINDRA AMERICAS INC",440,78
"LARSEN AND TOUBRO INFOTECH LTD",83,55
"ERNST & YOUNG US LLP",65,106
"PRICEWATERHOUSECOOPERS ADVISORY SE",33,93
"IBM INDIA PRIVATE LIMITED",5,145
"INFOSYS LTD",49,423
"ACCENTURE LLP",96,138
"HCL AMERICA INC",23,169
"WIPRO LIMITED",437,189
"TATA CONSULTANCY SVCS LTD",700,832

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...