Hi Andrea I was pleased to see you are making progress with the DB connection etc. I can see why mssql does not like the cascade from the same auth_user table. This may be an issue which needs fixing... To get things moving, and this might not be ideal, but I propose you consider either of these options:
1. Create manually your own tables without those contraints. You then set this: auth.define_tables(... migrate=False ) so that pyDal skips creation. 2. Do not include the signature fields with your auth. auth.define_tables(... signature=False ) Incidentally, I use option 2 and I therefore do not benefit from the created and modified info, but I could easily remedy this by adding the fields if I wished. Hope this helps. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/773a257f-3b89-4353-af71-68485c926ee0o%40googlegroups.com.

