Questions tagged [sql-server-2016-express]

Use this tag for questions specific to the Express version of the 2016 version of Microsoft SQL Server. The Express version is an entry level, free version of SQL Server 2016 with license restrictions such as the maximum size of a database and the number of concurrent users.

Microsoft SQL Server Express 2016 is the free, Express version of SQL Server 2016. The Express version has support for many of the capabilities of SQL Server 2016 making it a reasonable choice for applications that need a database engine that has similar characteristics as SQL Server 2016 yet do not need the full feature set and operating capacity as the full SQL Server 2016.

Limitations of SQL Server Express 2016 include database size, limit of 10 GB for each database though multiple databases are allowed each with the 10GB limit, and hardware capabilities that the software will use such as memory, max of 1GB, and number of processor cores, max of 4. There are also some additional reliability and robustness provisions in the standard SQL Server 2016 such as fallover and other advanced provisions that are not part of SQL Server Express.

SQL Server Express 2016 has two types of deployment. The first is similar to SQL Server 2016 in which it is installed as an out-of-process database engine running as a Windows service. The second is an an embedded database engine, Server Express LocalDB, which runs as an in-process database engine within the application using it rather than as a Windows service.

94 questions
-2
votes
2 answers

What is the best way of obfuscating columns in a table in SQL Server Express 2016

I have got a customers database and when I am using it in a presentation and to be on the safe side I would like to Obfuscate some sensitive data. What is the best way of doing this. I can always write a script to update a column with NewID() or…
Abe
  • 1,811
  • 2
  • 20
  • 29
-2
votes
2 answers

Setting the order for executing the stored procedures within a master stored procedure

I have a master stored procedure in which have many sub stored procedures, say 10 stored procedures. What I want is if I specify that stored procedure 1, stored procedure 2, then only these 2 stored procedures should be executed, the other 8 should…
VVN
  • 329
  • 1
  • 6
  • 17
-2
votes
1 answer

Update Query in SQL Server using Access code

What is the corresponding SQL Server code to do this? This was written in Access. UPDATE TableDB SET accountcode = format(val(accountCode),'000.000'); The column "accountCode" is a text format. Currently, some are xx.x, xxx, x.xxx, etc. I want all…
-6
votes
1 answer

Microsoft SQL Server 2016 Setup

I get this error when I try to open the SQL Server installation file : The operating system on this computer or its service pack level does not meet the minimum requirements for SQL server 2016. to determine the .....*** By going to "Properties"…
1 2 3 4 5 6
7