in reply to AnyData and Column Names with Spaces
You might want to try backquotes. Many SQL implementations use them for quoting table & column names.
select * from dbms where `System Status` = 'active' [download]