answersLogoWhite

0

In almost all cases Yes.

A database file is normally optimized for speedy retrieval of information. this optimization creates overhead in the storage of data, and increases the size of the file used to store the data.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you increase size of pst file in outlook?

How to Increase Outlook PST File Size


How do you increase the font size and increase the file name?

You cannot increase the file name as it is not valid. The font size can be increased in the <style> element.


What is the advantage of using file compression?

decrement in file size.........


How can I increase the file size of a photo?

To increase the file size of a photo, you can do so by adjusting the image resolution and quality settings. Increasing the resolution and saving the image in a higher quality format, such as TIFF or PNG, can result in a larger file size. Additionally, you can also add layers or apply filters to the image to increase its complexity and size.


What are the consequences of changing field size?

1. Database it's case sensitive 2. If database was cape chart using particular size must be maintain


When an online video is inserted in a Word document the file size of the document increases true or false?

when an online video is inserted in a word document the file size of the document increase


How is a database structured?

database structure depends on the business requirement and size of database. database structure depends on the business requirement and size of database.


What techniques are used to minimize the file size of animations?

Image compression, sound compression, use of text (breaking up text causes the file size to increase).


How do you retrieve image from database using php source code with demo?

Putting an image in a database is a bad practise in itself. Instead put the image name along with extension in the database file and use relative path to retrieve the image from the image folder.For example: If your image is in a folder named images/users then write the following code. The image path variable named $img_path will be stored in database.function upload_Image(){$uploaddir = realpath($_SERVER['DOCUMENT_ROOT']);$filename = $_FILES['file']['name'];$uploadfile = $uploaddir.'/project_name/image/users/'.basename($filename);$error = $_FILES['file']['error'];$tmp_file = $_FILES['file']['tmp_name'];$size = ($_FILES['file']['size']/1024); // File Size will be displayed in kilo bytes$type = $_FILES['file']['type'];if(($type=="image/jpeg"$type=="image/png"$type=="image/gif")&&($size0){echo "Invalid File";}else if($filename==""){echo "Filename not found";}else{if(file_exists($uploadfile)){"File already exists!!"; // To avoid duplication of files}else{if(move_uploaded_file($tmp_file, $uploadfile)){echo "File Uploaded";$imgpath = basename($filename);// connection// select database$query = mysql_query("INSERT INTO db_name (Image Path) VALUES('$imgpath')");if(!$query)echo "File cannot be added to database: ".mysql_error();}elseecho "Could not upload files";}}}else{echo "File is not image type";}}


Generally in an organization how many server are using?

IT purely depends on the Size of the organization, users and the work they are doing. The servers could be print server, file share, ad servers,sharepoint server,database servers etc..


What is the maximum database storage capacity of MySQL?

It all depends on the type of MySQL database you wish to use and also the operating system the server has. Most of the restraints are due to the max file size the operating system can store. The limits are done by table size rather than the database size as a whole.Win 32 w/ FAT/FAT32 - 2GB/4GBWin 32 w/ NTFS - 2TB (possibly larger)Linux 2.2-Intel 32-bit - 2GB (LFS: 4GB)Linux 2.4+ - (using ext3 file system) 4TBSolaris 9/10 - 16TBMacOS X w/ HFS+ - 2TBNetWare w/NSS file system - 8TBInnoDB tables are often split up into multiple files to allow larger tables, this is known as a tablespace. The maximum table space is 64TB.MyISAM tables default size is at 4GB, but this can be changed to a maximum of 65,536TB.


LZW compression will always reduce the file size of an image?

no. It can also increase the file size in very few cases, because it stores a header with information used in the decompression process.