Closed expectopatronum closed 8 years ago
Hi which version of SQL Server you're using? The solution needs at least SQL Server 2012 (and thus Integration Services 2012) to run
I run SQL Server 2012 SP2. And also the catalogue has the same version (the exact number is 11.0.5058) -> http://sqlserverbuilds.blogspot.co.at/
Can you please post the connection string you're using (just remove the password), please?
CONNECTION_STRING = {
"main": "DRIVER={SQL Server};SERVER=Felix;DATABASE=MeasDB;UID=;PWD="
}
HOUR_SPAN = 720
As I mentioned in my last sentence I'm using Windows Authentication on the database and therefore don't have username and password - or should I just plug in my Windows user there? Or is this only possible with a database user?
So, just to be 100% sure, the database created by SSIS has been named MeasDB, instead of the more usual SSISDB, right? Using Windows Authentication is fine. To be sure you're using Windows Authentication, I would use the following connection string
CONNECTION_STRING = {
"main": "DRIVER={SQL Server};SERVER=Felix;DATABASE=MeasDB;Trusted_Connection=yes;"
}
HOUR_SPAN = 720
Aaah, sorry. Of course it's SSISDB. I wrongly took the name of the database I'm usually connecting too. It's working now! Thanks again.
:) You're welcome :)
When I open the dashbord in my browser I get this error:
ProgrammingError: ('42S02', "[42S02] [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'catalog.folders'. (208) (SQLExecDirectW)")
With this stacktrace:I have Python 2.7.
I use this config.py:
Check out the other issue I created about the merge conflict.
Is something wrong with my config? Do I need username or password (I use Windows Authentication on the database).