- Skip attachment if downloaded content is not a valid PDF (HTML error response) - Add Nat_SubSubGroupSequence to nat_subsubgroup table (missing column referenced by sp_rpt_hasil_lab in SELECT and ORDER BY) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 lines
270 B
SQL
6 lines
270 B
SQL
-- Add missing Nat_SubSubGroupSequence column to nat_subsubgroup
|
|
-- Required by sp_rpt_hasil_lab which references this column in SELECT and ORDER BY
|
|
|
|
ALTER TABLE nat_subsubgroup
|
|
ADD COLUMN Nat_SubSubGroupSequence char(2) NOT NULL DEFAULT '' AFTER Nat_SubSubGroupCode;
|