1
vote
3answers
152 views
Is the Table in Use?
How to figure out if a table is in use in SQL (on any type database)? if somebody is already using it, or have it "open" then its in use.
…
0
votes
Is the Table in Use?
Actually this will give you a better result:
select spid
from master..sysprocesses
where dbid = db_id('Works') and spid <> @@spid
…
2
votes
What is the best way to access stored procedures in Django’s ORM.
You have to use the connection utility in Django:
from django.db import connection
cursor = connection.cursor()
cursor.execute("SQL STATEMENT CAN BE ANYTHING")
th …
