| Author |
Message |
learner Prog
Joined: 29 Oct 2012 Posts: 1
|
Posted: Mon Oct 29, 2012 6:32 am Post subject: Creating a filestream database using Sql packager 6 |
|
|
Hi,
I'm trying to restore a filestream enable database and get the following error:
Default FILESTREAM filegroup is not available in database 'TestDB'
I used sql packager to create a C# project. the original database was filestream enabled and had a table with a filstream data column.
the inner exception shows the create table script:
CREATE TABLE [dbo].[FileStreamDataStorage]
(
[ID] [int] NOT NULL IDENTITY(1, 1),
[FileStreamData] [varbinary] (max) FILESTREAM NULL,
[FileStreamDataGUID] [uniqueidentifier] NOT NULL ROWGUIDCOL CONSTRAINT [DF__FileStrea__FileS__014935CB] DEFAULT (newsequentialid()),
[DateTime] [datetime] NULL CONSTRAINT [DF__FileStrea__DateT__023D5A04] DEFAULT (getdate())
CONSTRAINT [UQ__FileStre__FB6FAD9C7F60ED59] UNIQUE NONCLUSTERED ([FileStreamDataGUID])
)
I think the problem is the new databse is not filestream enabled and when it tries to create a table with filestream column it is erroring.
can anyone please help? |
|
| Back to top |
|
 |
Manfred.Castro
Joined: 23 Apr 2012 Posts: 127
|
Posted: Tue Oct 30, 2012 5:16 pm Post subject: |
|
|
Before you can start to use FILESTREAM, you must enable FILESTREAM on the instance of the SQL Server Database Engine. This topic describes how to enable FILESTREAM by using SQL Server Configuration Manager.
http://msdn.microsoft.com/en-us/library/cc645923 _________________ Manfred Castro
Product Support
Red Gate Software |
|
| Back to top |
|
 |
|
|
All times are GMT + 1 Hour
|
| Page 1 of 1 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group