Forum Replies Created

Viewing 15 posts - 2,611 through 2,625 (of 6,401 total)

  • RE: Database Size

    What is confusing you about it?

  • RE: place fulltext index into diffrent filegroup

    Use the "select index filegroup" option of the wizard when creating the index.

  • RE: Transactional log is full.. space recovery lead to BLocking

    Depends what the commands where going.

    You should really debug what they are going using the sql text dmv.

  • RE: Database Size

    Shrinking then rebuilding is ok it will add space to the MDF as the rebuild will need space to do the sorts etc.

    But you should really add enough space to...

  • RE: Database Size

    Well if they are at 25GB and they cant grow past 25GB then why bother shrinking? Do you need the space back to the OS for some reason? ...

  • RE: Database Size

    You need to add enough free space in all the files you shrink.

    So if your DB has 10 files, you run it 10 times for each file in the DB.

    You...

  • RE: Database Size

    ALTER DATABASE .... MODIFY FILE (NAME = '.....', SIZE = 45GB) --Put the name of the logical file from sp_helpfile in the command

  • RE: Database Size

    As the object is deleted, it doesn't release the space back to the operating system, as grabbing space and growing the database is a very costly and expensive operation.

    Your options...

  • RE: Data Not Getting Inserted Into DATABASE

    You got lucky detaching and attaching a single file DB, SQL will not always do this successfully. The log is not a throw away file, it is critical to...

  • RE: regarding output of Set Statistics IO on

    post the actual execution plan of the query.

    post the create table definitions of the visit and result tables along with all the indexes.

    Please take a look at the two links...

  • RE: Data Not Getting Inserted Into DATABASE

    Hakuna Matata (1/31/2013)


    The data & log file have different logical names FSB & FSB_LOG. It was a typo error.

    I tried the ALTER DATABASE FSH MODIFY FILE (NAME = FSH_data,...

  • RE: Data Not Getting Inserted Into DATABASE

    Both your data file and log file have the same logical name, that database shouldnt of created.

    ALTER DATABASE FSH MODIFY FILE (FILENAME = 'G:\Database\FSH\FSH.mdf', SIZE = 45GB)

  • RE: Data Not Getting Inserted Into DATABASE

    Whats the output of the following

    select * from sys.master_files where database_id = DB_ID('FSH')

    ALTER DATABASE FSH MODIFY FILE (NAME = FSH_data, SIZE = 100000MB);

  • RE: Using database mail - risky

    Only if your CEO has the right roles on SQL or knows of an account that does.

    To be able to send mail you need to be part of the DatabaseMailUserRole...

  • RE: Data Not Getting Inserted Into DATABASE

    What is the growth rate? Percentage? MB? How much?

    Manually add some space to the files which live in the primary file group.

Viewing 15 posts - 2,611 through 2,625 (of 6,401 total)