Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what are file groups?

Answers were Sorted based on User's Feedback



what are file groups?..

Answer / j.jyothy

Filegroup is a logical container for the collection of
datafiles.(.mdf or .ndf that is primary file group or
secondary file group)
Every database contain 2 file groups
1.Primary file group, which Contains all the primary data
files any other Secondary datafile which is not
specifically allocated to anyother file groups
2.User defined file group:It is created by the user to
group the datafiles

3.transaction log file:Does not belong to any file group.A
database can have maximaum of 32,767 file groups

Example:
Create database student
on Primary ***Primary
(
name='student_pri_data1.mdf',
filename='g:\student_primary_data1.mdf',(Location of this
file group)
size=2mb
maxsize=10mb
filegrowth=1mb
),
filegroup student_group1 ***Secondary
(
name='student_Sec_data1.mdf',
filename='g:\student_sec_data1.mdf',(Location of this file
group)
size=10mb
maxsize=12mb
filegrowth=2mb
)
log on ***log file
(
name='student_log_data1.mdf',
filename='g:\student_sec_data1.mdf',(Location of this file
group)
size=12mb
maxsize=10mb
filegrowth=1mb
)

Is This Answer Correct ?    7 Yes 1 No

what are file groups?..

Answer / priyanka

Filegroups are named collections of files and are used to
help with data placement and administrative tasks such as
backup and restore operations.

Is This Answer Correct ?    6 Yes 1 No

what are file groups?..

Answer / anuj

Filegroups are group or collection of Files that is used to
maintauined the transaction of Data and Restore Operations.

Is This Answer Correct ?    3 Yes 4 No

Post New Answer

More SQL Server Interview Questions

What is the need for indexing?

0 Answers  


In what three ways is the return statement used in a stored procedure?

0 Answers  


How to insert new line characters into strings?

0 Answers  


How would you add a section to a table?

0 Answers  


What is SQL server agent?

2 Answers   HCL, SAP Labs,


What is subquery? Explain the properties of a subquery?

0 Answers  


Explain the new features of SQL server 2000?

1 Answers  


What is transaction ? Give me one example.

11 Answers   Melstar, Wipro,


What is application role in sql server database security? : sql server security

0 Answers  


How do I schedule a sql server profiler trace?

0 Answers  


What is difference between createstatement and preparedstatement?

0 Answers  


what is statistics

1 Answers  


Categories