An environment paradigm that doesn't involve multiple user identities.
Questions tagged [single-user]
23 questions
12
votes
1 answer
Youtube API single-user scenario with OAuth (uploading videos)
This question has been already asked, but never answered.
I want to write some php scripts that would upload video to my own YouTube account. I have already registered the application and have the developer key, the customer key and the customer…

matteo
- 2,934
- 7
- 44
- 59
6
votes
1 answer
How to exit from postgres' single-user mode?
I have entered postgres' single-user mode
$ sudo -u postgres postgres --single -D /var/db/postgresql/
PostgreSQL stand-alone backend 9.4.11
backend>
What command can I use to close single-user mode and exit back to a normal $ command prompt?
The…

mherzl
- 5,624
- 6
- 34
- 75
5
votes
2 answers
Setting single user mode to restore backup
I have the following function:
public void RestoreDatabase(String databaseName, String backUpFile,
String serverName, String userName, String password)
{
SqlConnection.ClearAllPools();
ServerConnection connection…

Anthony D
- 10,877
- 11
- 46
- 67
4
votes
4 answers
set database to multi_user through management studio
I have had to set my database to single_user mode to allow for a dbcc checkdb repair and now I am unable to get my database back to multi_user. I have tried the following command in a query window against the master database but it hasn't worked as…

Jay
- 3,012
- 14
- 48
- 99
4
votes
0 answers
SQL Server stuck in single_user with auto_update_statistics_async on
Books online states
Before you set the database to SINGLE_USER, verify the
AUTO_UPDATE_STATISTICS_ASYNC option is set to OFF. When set to ON, the
background thread used to update statistics takes a connection against
the database, and you…

Kahn
- 1,630
- 1
- 13
- 23
3
votes
1 answer
NHibernate Multithreaded Session Management
I have a situation which involves several threads simultaneously populating a database with data scraped from web sources. The scrapers are to be run periodically to collect new data from various sources.
I am new to using NHibernate and not…

Liam Williams
- 676
- 9
- 16
3
votes
2 answers
SQL Job Agent DB Restore fails with error #6107: Only user processes can be killed
We have an SQL Job Agent that runs in the "wee hours" to restore our local database (FooData) from a production backup.
First, the database is set to SINGLE_USER mode and any open processes are killed. Second, the database is restored.
But the 3rd…

Hotelsinger
- 142
- 2
- 3
- 12
1
vote
1 answer
Single user restrictions even if nobody's connected
When using SQL Server Management Studio I try to query a DB created with "Single user" restrictions.
I log in by using SQL Credentials and "sa" user and by running sp_who2 command I double check nobody is connected to the DB, nevertheless when…

Davide Porro
- 29
- 3
1
vote
3 answers
Single user mode "missing behavior" on SQL Server
I run a script provided by one of Microsoft employee to find out about which indexes need to Rebuild/Reorganize depending on the average fragmentation. I got back a reasonable list but while trying to rebuild some of them on a specific database I…

Moslem Ben Dhaou
- 6,897
- 8
- 62
- 93
0
votes
1 answer
Single user license - Minitab
We are using Minitab for statictical analysis and we have a single user license, for this year we don't have budget and we can't upgrade our license type to multi user.
We have installed Minitab in a single computer and asking different users to…
0
votes
2 answers
REST for session-based single-user service?
I'm thinking about implementing a server for remotecontrolling a device as a RESTful service. Unlike most restful services known from the web it could only serve one client in a meaningful way at a time. Do you think that REST is still a valid…

h0b0
- 1,802
- 1
- 25
- 44
0
votes
0 answers
How can I create a public single-user jupyter notebook-server?
I have setup a Jupyterhub running on K8s
It authenticates and launches private user notebook-servers (pods) in the K8s
But these pods are private to K8s networking, and I want to connect to it from Local VSCode via its Remote Kernel Connection
I…

Anushree Sarkar
- 11
- 2
0
votes
0 answers
How to get out of single user mode on a mac?
I tried to start up my Mac in single user mode but it asked me for a password and I don't know what it is. How do I escape to normal user interface?

Ruben Sutton
- 35
- 3
0
votes
0 answers
Login to SQL Server Single User Mode when NT AUTHORITY Disabled
I will connect to SQL Server with single user mode -m; parameter
My SQL Server is SQL Server 2008 R2
but when NT AUTHORITY Disabled can not login even local admin user
I don't want to reset the sa password just I will login into SQL and create a…

Mostafa Bagheri
- 366
- 2
- 7
- 19
0
votes
0 answers
Deadlock after setting Single user mode
We have some scripts that are executed during the installation of our application.
One of them is used for setting Database Collation, the other one is used for setting compatibility level. We use the following construction for these scripts:
ALTER…

Alex Trueman
- 19
- 1