When I try to create an attribute , it's showing attribute limit exceeded
ya...this is a limitation of the underlying db. do you really need somethign that is 10,000 or is longer okay?
nope , I just give it some default value. I didn't realize it. Thanks for pointing out
try longer than 16383. under 16383, a VARCHAR is used which takes up space in the row. starting at 16384, TEXT is used which is a pointer and takes up less space
that's so cool. I am just learning about varchar. But why go with the varchar in the first place if it takes more space
Varchar will take a less space as it will limit the size of the able to inserted into that attribute.
P.s. Char it's like Varchar but the length is not varying. the final different will be matter for indexing purposes
oh okay got it. Thank you
The attribute is getting created now. You can close the issue
[SOLVED] Attribute Limit Exceeded
Recommended threads
- Android SDK: Kotlin null Value Not Updat...
Hi team, I think you should check the Android SDK implementation once, as it seems to have an issue handling Kotlin **null** values. For example: When I send:...
- IMPORTANT! SOC-2 Request Failing
Issue requesting SOC-2. If tried other/private browser as well as filling in optional fields.
- Can you suppress row $meta data?
When using listRows with a 'select' query to limit the response [for performance], I'm still getting extra columns (eg. `$id`, `$sequence`, `$createdAt`, `$upda...