Re: How to inspect MSSQL Database in Django 2.1

2019-09-12 Thread Adam Parsons
Hi Wikils, It might help if you can post some additional context to the situation, as well as some output of the errors you're experiencing. Without seeing the error message, we cannot possibly help you determine the issue. Could you please provide the following 1. Your settings.py (with yo

Re: Deleting a record exactly once

2019-08-01 Thread Adam Parsons
Hi Ian, There's a few things you could try out. You could employ locking in your database, so that two workers cannot interact with the same row at the same time. Step 4, sever B no-op'ing implies you're already using a technique to require unique values in Records, perhaps apply the same te

Re: Unwelcome error!

2019-05-21 Thread Adam Parsons
You need to read the error message, it says there is no such table. This refers to a missing table in the database. Given it is referring to django_session, you have not run migrations yet. If you follow the Django project's official tutorial, it will walk you through that process in step 2 h