What is maximum size of a database in MySQL?
Answer Posted / prathiba
The effective maximum table size for MySQL databases is
usually determined by operating system constraints on file
sizes, not by MySQL internal limits.
Is This Answer Correct ? | 117 Yes | 20 No |
Post New Answer View All Answers
How you will Show unique records.
What is the difference between procedure and function in mysql?
What is a tinyint in mysql?
Why use mysql procedures?
What is a blob datatype?
What is heap table?
What is mysqli procedural?
What does mysql flush privileges do?
What are views in mysql?
What are the technical specifications of mysql?
How to Set a root password if there is on root password.
How is myisam table stored?
Please can the SQL code below be interpreted IF @xMatchCriteria='MATCH12' BEGIN IF EXISTS (Select * from #InsightData where (EmailAddress=@xDCPEmailAddress ) ) BEGIN SET @xTestMatchCriteria = @xMatchCriteria; SELECT @xCRMCustomerId=CustomerId, @xCRMDcpCustomerId=DcpCustomerId, @xCRMPortalCustomerID=PortalCustomerID,@xCRMDcpID=DcpID, @xCRMCardNumber=CardNumber, @xCRMEmailAddress=EmailAddress, @xCRMfirtLetterFirstName=firtLetterFirstName, @xCRMLastName=Surname,@xCRMAddressLine1=AddressLine1, @xCRMPostCode=PostCode FROM #InsightData where (EmailAddress=@xDCPEmailAddress ) END ELSE BEGIN SET @xTestMatchCriteria='No'+@xMatchCriteria; END END
How do I find the size of a mysql database?
How to display top 10 rows in mysql?