Question

Everytime I try to create a new Database in SQL—haven't accomplished to create any, so far. Please, help me with a detailed solution for this.

TITLE: Microsoft SQL Server Management Studio

Cannot write property IsFileStream.This property is not available on SQL Server 7.0. (Microsoft.SqlServer.Smo)

For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=10.50.1600.1+((KJ_RTM).100402-1539+)&EvtID=IsFileStream&LinkId=20476


BUTTONS:

OK

Was it helpful?

Solution 3

Currently you are using preview version of SQL Server 2014 (Community Technology Preview 2) which could be unstable.

You should use latest stable (RTM) version from http://msdn.microsoft.com/en-us/library/dn434042.aspx

OTHER TIPS

SQL Server Management is unable to set up the default property while creating a database using previous version of SQL Server Management Studio.

Select the master database and write a query to create database Example create database XYZ

There is another possibility which you can check as part of SQL Server instance properties. I'm facing this issue with SQL Server 2014 express edition also. It might be the case that the Filestream Access Level configuration (inside Advanced node) is currently disabled for your SQL Server instance. Try changing it to Full access enabled to resolve this issue. Have a look at the below snapshot -

enter image description here

This is due to you using older MS SQL Management studio. Download the new version in this link:

https://learn.microsoft.com/es-es/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver15

I faced the same issue with having SQL 2008R2 and when I installed 2019, I had the same error as you on management studio, now I'm installing new version.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top