When executing following SQL:
Delete FROM tbl_Genre
WHERE (tbl_genre.GenID = 9)
I get this?
Server: Msg 207, Level 16, State 3, Procedure T_tbl_Genre_DTrig, Line 4
Invalid column name 'GenID'.
but a slight modification of the SQL:
Select * FROM tbl_Genre
WHERE (tbl_genre.GenID = 9)
Now It shows the row I want to delete.
I have no relationships to the table.
I have tried to delete from Enterprise Manager, and from Query Analyzer, but still same error. Can not find Column GenID
Eldaria
That was my 25cent** of opinion.
** Inclusive Intrest, tax on interest, Genral tax, Enviromental tax, Tax, and tax on intrest, tax on fees, tax on tax, and other Various taxes and fees.
Delete FROM tbl_Genre
WHERE (tbl_genre.GenID = 9)
I get this?
Server: Msg 207, Level 16, State 3, Procedure T_tbl_Genre_DTrig, Line 4
Invalid column name 'GenID'.
but a slight modification of the SQL:
Select * FROM tbl_Genre
WHERE (tbl_genre.GenID = 9)
Now It shows the row I want to delete.
I have no relationships to the table.
I have tried to delete from Enterprise Manager, and from Query Analyzer, but still same error. Can not find Column GenID
Eldaria
That was my 25cent** of opinion.
** Inclusive Intrest, tax on interest, Genral tax, Enviromental tax, Tax, and tax on intrest, tax on fees, tax on tax, and other Various taxes and fees.