About 23,200,000 results
Open links in new tab
  1. How to display Oracle schema size with SQL query?

    I have a Oracle schema with 70+ tables. I want to create simple page which can display the HDD space occupied by the tables. How I can get this value with SQL query? P.S And how I can …

  2. Changing image size in Markdown - Stack Overflow

    Learn how to resize images in Markdown using HTML or CSS techniques with examples and step-by-step instructions.

  3. linux command to get size of files and directories present in a ...

    How can I see the size of files and directories in Linux? If use df -m, then it shows the size of all the directory at the top level, but, for the directories and files inside the directory, how do I

  4. shell - Check folder size in Bash - Stack Overflow

    I'm trying to write a script that will calculate a directory size and if the size is less than 10GB, and greater then 2GB do some action. Where do I need to mention my folder name? # 10GB SIZE="

  5. What's sizeof(size_t) on 32-bit vs the various 64-bit data models?

    An individual process in an OS might only be allowed to reserve up to 4GB RAM or less, which means size_t would only need to be 32-bit while pointers are 64-bit. 32-bit wide size_t wouldn't …

  6. What's the difference between size_t and int in C++?

    In several C++ examples I see a use of the type size_t where I would have used a simple int. What's the difference, and why size_t should be better?

  7. Is the size of C "int" 2 bytes or 4 bytes? - Stack Overflow

    The sizeof operator yields the size (in bytes) of its operand, which may be an expression or the parenthesized name of a type. The size is determined from the type of the operand. Assuming …

  8. How to change mat-icon size in Material - Stack Overflow

    Learn how to adjust the size of material icons in your project using various methods and CSS techniques.

  9. How do I change the size of figures drawn with Matplotlib?

    The size of every matplotlib element is determined by the interaction of three properties: Size in inches: Get current size via: fig.get_size_inches() and change it via fig.set_size_inches().

  10. How do you find the disk size of a Postgres ... - Stack Overflow

    I'm coming to Postgres from Oracle and looking for a way to find the table and index size in terms of bytes/MB/GB/etc, or even better the size for all tables. In Oracle I had a nasty long query that