![]() Preserved Topic: Finding the size of a table...mysql (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: Willaimsport, PA, US of A the hole in the Ozone |
![]() I'm trying to find the size of a table in mysql so that I can put a limit on DOS attacks, by making it so that you can only make the table so big in any givin amount of time, is there any command that would tell me this information? |
Paranoid (IV) Mad Scientist From: Omicron Persei 8 |
![]() if you are talking php: www.phpmyadmin.net has these features. maybe you can look at the source code and find some information on that. |
Maniac (V) Inmate From: under the bed |
![]() What do you mean by "how big"? |
Paranoid (IV) Inmate From: Willaimsport, PA, US of A the hole in the Ozone |
![]() I mean how big in kilobytes, megabytes, I figured maybe there was an SQL query I could use to find that out. I'm using JSP not PHP |
Paranoid (IV) Mad Scientist From: Omicron Persei 8 |
![]() |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
![]() "SHOW TABLE STATUS LIKE 'tablename'" |
Paranoid (IV) Inmate From: Willaimsport, PA, US of A the hole in the Ozone |
![]() Ah thank you bit damaged, that's just what I was looking for! |