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: : 130691
SELECT companies.* , sectors.level3des FROM companies, sectors WHERE companies.sector = sectors.level3num and compid = '130691'

The Shares Amount is 202269000

The cusip is 386617104
NOT OLD

Retrive Rows from Table:
select * from current13Fpositions where cusip = '386617104'
Number of Rows :1

update current13Fpositions set compid = '130691', sectorNum = '401002', sectorDes = 'Diagnostic Substances', issuerCik = '0001020475' , percentOut = '2.67' where entryId = '67192093'
End Function

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

update archive13F set compid = '130691', sectorNum = '401002', sectorDes = 'Diagnostic Substances', issuerCik = '0001020475' where entryId = '66107413'
update archive13F set compid = '130691', sectorNum = '401002', sectorDes = 'Diagnostic Substances', issuerCik = '0001020475' where entryId = '64119431'
End Function
The Script is complete, exiting....