Sparx Systems Forum
Enterprise Architect => General Board => Topic started by: GrahamL on November 11, 2021, 10:51:30 pm
-
Hi
Been away from EA for a while
How do I use model search to find all elements that are of type Issue
Thanks
-
SELECT * FROM t_object WHERE object_type = "Issue"
You might add those CLASSTYPE stuff but that one works as well.
q.
-
Thanks but I get 'Invalid column name 'issue'
-
Means you have not entered the query correctly as above.
q.
-
Copied and pasted into new model search's SQL editor - still get the same
-
Can't be (or so). The message says that you try a SELECT ... FROM Issue which would obviously be wrong. Which EA version is yours?
q.
-
What's your DB type? It might not like double quotes. Try
SELECT * FROM t_object WHERE Object_Type = 'Issue'
-
Ah, the quotes for SQL Server....
q.