RE: Update Account/Competitor Table in SQL
Hi Nicole,
It is not supported to insert record directly into CRM SQL Database.
but even if you want orbus_competitor_accountid id for SQL, you can use
insert into orbus_competitor_accountBase (orbus_competitor_accountid, competitorid, accountId) values (new Guid(), competitorid, accountId)
you can New Guid() to generate orbus_competitor_accountid.
but again this GUID is not sequential GUID, so it might create some issue in performance.
Another option would be you can create one small console application and using CRM SDK you can easily insert multiple rows / create multiple relationships.
Hope this will help..