Having trouble getting sqitch running on Windows #907
-
I was able to get sqitch running a few weeks ago and even deployed a change but for some reason, I'm having trouble getting it up and running again. I'm on Windows, so the documentation is pretty sparse on exact details. I'm not even sure where/what I should be running to properly get sqitch up, but I've done a mix of running the executable sqitch.bat and spinning up the sqitch docker container. When I try to run various commands like
When I try to target my database, like this: I get this:
I have the updated Snowflake driver, as I downloaded it about a month ago and got this working a few weeks ago. Where do I figure find the Snowflake driver that sqitch is attempting to use? Or could this be an environment variable path issue? If so, what am I supposed to add there? Any insight would be helpful, thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
How did you build Sqitch? The Docker image includes DBD::ODBC. |
Beta Was this translation helpful? Give feedback.
The
--with-odbc
option here adds it to the base image. Are you building the Snowflake image form these instructions?If not, DBD::OBC won't load from the base image unless you also install unixodbc. I just tested it out on the base Sqitch image:
Sq…