To do multible compids, use the following script:
php /var/www/html_j3sg/institutions/ChangeCompidOfAllInstitutionalAfewCompaniesAtATime.php
Please note that the script mentioned above (ChangeCompidOfAllInstitutionalAfewCompaniesAtATime) only updates the current13FFilingpositions table, no archived tables.

This script actual updates 13F current table as well as both archive13F tables.

We got coming in compid: : 131016
SELECT companies.* , sectors.level3des FROM companies, sectors WHERE companies.sector = sectors.level3num and compid = '131016'

The Shares Amount is 36050000

The cusip is 16948P105
NOT OLD

Retrive Rows from Table:
select * from current13Fpositions where cusip = '16948P105'
Number of Rows :3

update current13Fpositions set compid = '131016', sectorNum = '901006', sectorDes = 'Oil & Gas Refining, Processing & Marketing', issuerCik = '0001070045' , percentOut = '559.22' where entryId = '23474187'
update current13Fpositions set compid = '131016', sectorNum = '901006', sectorDes = 'Oil & Gas Refining, Processing & Marketing', issuerCik = '0001070045' , percentOut = '290.69' where entryId = '24569584'
update current13Fpositions set compid = '131016', sectorNum = '901006', sectorDes = 'Oil & Gas Refining, Processing & Marketing', issuerCik = '0001070045' , percentOut = '8.04' where entryId = '37276683'
End Function

Retrive Rows from Table:
select * from archive13F where cusip = '16948P105'
Number of Rows :2

update archive13F set compid = '131016', sectorNum = '901006', sectorDes = 'Oil & Gas Refining, Processing & Marketing', issuerCik = '0001070045' where entryId = '65002828'
update archive13F set compid = '131016', sectorNum = '901006', sectorDes = 'Oil & Gas Refining, Processing & Marketing', issuerCik = '0001070045' where entryId = '72368738'
End Function
The Script is complete, exiting....