This is a discussion on Clearness needed in Sp_attach_db within the SQL Server forums, part of the Microsoft SQL Server category; --> Hi With the sql server on line help , The syntax for the sp_attach_db has the file name .It ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi With the sql server on line help , The syntax for the sp_attach_db has the file name .It is aslo given that max of 16 files can be geven. I attached a db with a single d.mdf . could u pls tell what r the 16 file types or how a db can be attached with 16 files. With thanks |
| ||||
| You can use CREATE DATABASE ... FOR ATTACH to attach a database of more than 16 files. See the SQL 2000 Books Online <tsqlref.chm::/ts_create_1up1.htm> for details. BTW, sp_attach_db and sp_single_file_attach_db are basically just wrappers for this command. -- Hope this helps. Dan Guzman SQL Server MVP ----------------------- SQL FAQ links (courtesy Neil Pike): http://www.ntfaq.com/Articles/Index....partmentID=800 http://www.sqlserverfaq.com http://www.mssqlserver.com/faq ----------------------- "Raghuraman" <raghuraman_ace@rediffmail.com> wrote in message news:66c7bef8.0311160458.621723bc@posting.google.c om... > Hi > > With the sql server on line help , The syntax for the sp_attach_db has > the file name .It is aslo given that max of 16 files can be geven. I > attached a db with a single d.mdf . > > could u pls tell what r the 16 file types or how a db can be attached > with 16 files. > > > > With thanks |