Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
USE master
go
--Create New DB For Testing
CREATE DATABASE testFilegroup
go
--Create FileGroup
ALTER DATABASE testFilegroup
ADD FILEGROUP Test1FG1;
--Add file to fileGroup
ALTER DATABASE testFilegroup
ADD FILE
(
NAME = test1dat3,
FILENAME = 'c:\t1dat3.ndf',
SIZE = 5MB,
MAXSIZE = 100MB,
FILEGROWTH = 5MB
)
TO FILEGROUP Test1FG1
--Set FileGroup ReadOnly
ALTER DATABASE testFilegroup
MODIFY FILEGROUP Test1FG1 ReadOnly;