Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
radha
Starting Member
11 Posts |
Posted - 2005-04-15 : 03:21:00
|
| hi, I have a performance problem.Actually my job is running weakly once.but it's taking long time.In that job Iam executing Stored Procedures.For checking purpose,i executed the stored Procedure manually in two server.Server "A" taking short time.But Server "B" taking long time.I have checked the database size and table size ,everything is same for Server A and Server B.But Server A -->If i right click the Database and Check the properties.In that Available size on disc is 94.9 MB.But in Server B -->If i right click the Database and Check the properties.In that, Available size on disc is 0 MB.I think beacuse of that,How to increase the Available size.Help meBye |
|
|
derrickleggett
Pointy Haired Yak DBA
4184 Posts |
Posted - 2005-04-15 : 08:28:54
|
From Books Online:quote: E. Modify a fileThis example increases the size of one of the files added to the Test1 database in Example B.USE masterGOALTER DATABASE Test1 MODIFY FILE (NAME = test1dat3, SIZE = 20MB)GO
MeanOldDBAderrickleggett@hotmail.comWhen life gives you a lemon, fire the DBA. |
 |
|
|
|
|
|