sql - Old Access Update Statement -


we switched oracle sql server , had old update statement used work giving error 'operation must updateable query'. query type set update, have tried running administrator no success , able run select statements no problem, connection must ok?

i'm not sure if i'm missing simple i'm used working in ssms , not access. code update statement below:

update dbo_learner_aims  inner join dbo_registration_units on dbo_learner_aims.rul_code = dbo_registration_units.rul_code  set dbo_learner_aims.end_date = [exp_end_date],  dbo_learner_aims.completion = "10",  dbo_learner_aims.outcome = "40",  dbo_registration_units.fes_progress_code = "ext",  dbo_registration_units.fes_progress_date = [exp_end_date],  dbo_registration_units.progress_status = "x" (((dbo_learner_aims.end_date) null) , ((dbo_learner_aims.funding_year)="17") , ((dbo_learner_aims.learning_aim) = [enter aim]) , ((dbo_learner_aims.exp_end_date) between #8/1/2012# , [enter expected end date])); 

thanks in advance answers.

the error 'operation must updateable query'.
means indexing problem, missing primary key. check properties page of query, snapshot vs dynaset setting.


Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -