I am having trouble updating an existing table (with a few hundred records) with a unique ID
The table is called BHIVE.ProjectDataGroupDetail and has a few hundred records. The Field I'd like to update is called ProjectDataGroupDetailID. I am also updating a 2nd field with the value '1'.
My stored procedure is:
ALTER PROCEDURE [BHIVE].[PopulateProjectDataGroupDetail]
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
UPDATE BHIVE.ProjectDataGroupDetail
SET ProjectDataGroupDetailID = Row_Number() OVER (ORDER BY SampleProjects), ProjectDataGroup = 1
End
I am getting the error :
Windowed functions can only appear in the SELECT or ORDER BY clauses
You can use
MERGE
statement for this.db<>fiddle