Trying to Run a Report...What am I doing wrong?
Kyle Rockwell
I am trying to run a report to list computers operating system, service pack, memory and also things like diskdrive space. I try to run an sql report and select DiskDrive.Size then try to run it I get an error No Such Column: DiskDrives.Size I get this for anything other than what is under computers. Please advise what I am doing wrong. Thanks!
0
Comments
It sounds like you may be missing the DiskDrives table in the from clause of the SQL. You can add it like this:
I attached a file of what I am doing. I added the line but I am getting a syntax error when trying to run it.
I was able to get it to work, however, when it displays it does not display in GB.
The size column is in bytes, so you need to divide it to make it GB:
Thank you very much for the quick response! One last question. If I also wanted to get a list of applications how would i create the column for applications?
You would use the Applications table like the DiskDrives table.
I figured out how to do it for applications! Thanks for all your help!
No worries.