I'm currently working on pulling some data from a SQL Server database into ServiceNow via JDBC. The problem I'm having is that the query is bringing back null values for some of the columns.
The query I'm running from SNOW is
select [Capacity (Bytes)]
from memory_table
which returns null values for the column Capacity (Bytes)
. In the SQL Server database, the table was created with the column name as Capacity (Bytes)
with the space and parenthesis in it and I think that's why its coming back null.
I've tried adding the brackets, double quotes, and single quotes around the name of the column in the query but the result is the same. If I try the query with another column in the table which is formatted correctly it works just fine.
Any help would be appreciated.