Hello,
I am created a script that queries a SQL database we use for our ticketing system. The script connects to an ODBC and queries the selected groups tickets and is supposed to search from date ranges (I am trying just a few days but it could be from a few weeks to months). I have it all complete except the fact when I query tickets it pulls every ticket instead of the ranges. The database does date/time in epoch format and since I am fairly new to SQL and PS I am not sure how to fit that into a SQL select function.
Can anyone please offer some suggestions?
Here is my code:
#When attempting queries - Most are HPD:Help Desk - That will not work here. It needs to be #HPD_Help_Desk ## Login Information - Using CAC Credentials doesn't work yet - have to use Username and Password $id = Get-Credential "domain\$("username")" $userId = $id.UserName.split("\")[1].tolower() $password = $id.GetNetworkCredential().Password write-host "Running Query" ##### Start the database connection and set up environment $DbString="DSN=ODBC Driver;UID=$userID;PWD=$password" add-type -path 'PathtoDll' $DBConnection=New-Object System.Data.Odbc.OdbcConnection ($SelectStatement) $DBCommand=New-Object System.Data.Odbc.OdbcCommand $DBConnection.ConnectionString=$DbString $DBConnection.Open() $DBCommand.Connection=$DBConnection ##What You Want to Query $DBCommand.CommandText="SELECT Incident_Number, Assignee, Reported_Date FROM HPD_Help_Desk WHERE Assigned_Group ='1' OR Assigned_Group ='2' OR Assigned_Group ='3' OR Assigned_Group ='4' AND Reported_Date = 'to date'" ## Execute Query $DBResult=$DBCommand.ExecuteReader() $UserTable=New-Object system.data.datatable $UserTable.load($DBResult) $UserTable | Format-Table
Any help or suggestions would be appreciated!
Thank you!