[新しいコレクション] oracle alter table move nocompress 340325-Oracle alter table move partition compress

ALTER TABLE MOVE TABLESPACE ===== ALTER TABLEMOVE enables you to relocate data of a nonpartitioned table or of a partition of a partitioned table into a new segment, and optionally into a different tablespace This statement also lets you modify any of the storage attributes of the table or partition, including those which cannot be modified using ALTER TABLEExtended COMPRESS caluse COMPRESS BASIC FOR OLTP BASIC –ALTER TABLE EMP MOVE NOCOMPRESS;

Alter Table

Alter Table

Oracle alter table move partition compress

Oracle alter table move partition compress-MAPPING TABLE The MAPPING TABLE clause is relevant only for an indexorganized table that already has a mapping table defined for it Oracle Database moves the mapping table along with the moved indexorganized table partition The mapping table partition inherits the physical attributes of the moved indexorganized table partition This is the only way you can change the attributes of the mapping table partition If you omit this clause, the mapping tableTable altered SQL> alter table t1 move partition p_2 nocompress;

Oracle Table Compression Part1

Oracle Table Compression Part1

Ok 直接alter table tableName move nocompress后能增加列,但无法增加带default值的列 设置为 move nocompress后即可, 原因暂未研究,备查Note We can use compress in create statement also Example of table with compress clause CREATE TABLEAlter table move compress的技术本质是通过在新的表空间或当前表空间中分配新的extents来存放压缩后的数据而实现的。而原来分配给该表的这些extents只释放供重用但不会被收缩(shrik highwatermark)从这个角度来说,如果我们需要对一个大表做alter table move compress的动作的话,那么你就必须要确保目标表空间上

Objects were moved to the new tablespace;1710 · SQL> alter table t_part move partition p_default nocompress update indexes; · Moving the table will also move the ANYDATA column create table t ( c1 int, c2 anydata ) tablespace users;

In this blog we're going to discuss the Online Move Partition to Any Compressed Format feature, one of the many lesser known features included with the Advanced Compression option Here are some key points You can use the ALTER TABLEMOVE PARTITION statement or ALTER TABLEMOVE SUBPARTITION statement to move a table partition or subpartition When youSELECT compression, compress_for FROM user_tables WHERE table"alter table move nocompress" certainly seems to be the obvious option, but you will have to do each partition separately You may also have to drop the bitmap indexes before you move, and rebuild them but I'd have to check that;

Oracle To Snowflake Etl Steps To Move Data Hevo Blog

Oracle To Snowflake Etl Steps To Move Data Hevo Blog

Oracle Table Compression Part1

Oracle Table Compression Part1

PARTITION_NAME COMPRESS COMPRESS_FOR P1 ENABLED BASIC P2 ENABLED BASIC P3The original tablespace was dropped;Insert into t values ( 1, anydataconvertVarchar2( 'test' ) );

Alter Table

Alter Table

Alter Table

Alter Table

ALTER INDEX REBUILD PARTITION NOCOMPRESS;ALTER TABLE sales MOVE PARTITION SALES_Q1_1998 NOCOMPRESS NOLOGGING / This gives us a size as follows SEGMENT_NAME SALES SEGMENT_TYPE TABLE PARTITION BYTES Using the earlier syntax to compress this again we get the following SEGMENT_NAME SALES SEGMENT_TYPE TABLE PARTITION BYTES0416 · "ALTER TABLE MOVE PARTITION ONLINE allows DML operations to continue to run uninterrupted on the partition that is being moved Global indexes are maintained during the move partition operation, so a manual index rebuild is no longer required Certain uses of Online Move Partition require Advanced Compression specifically, if the user uses the feature to move a partition to a compressed format (any form of compression, including Basic, Advanced Row, or HCC), then an Oracle

Advanced Compression With Oracle Database 11g Release 2

Advanced Compression With Oracle Database 11g Release 2

18 Managing Space Copyright 09 Oracle All Rights

18 Managing Space Copyright 09 Oracle All Rights

SELECT segment_name, segment_type, Earlier it was not possible to add or remove columns from a compressed table In Oracle 10G, you can add the column but can't drop it (tested on 104) One way is to set the columns as unused ALTER TABLE tbl_compress ADD col2 NUMBER;Tabelle wurde geändert SQL> select table_name , compression , compress_for from user_tables;Table altered As you can see switching on the compression is only allowed if all partitions of the bitmap index(es) are unusable the opposite is not true You can

Alter Table

Alter Table

Alter Table

Alter Table

Alter table table_name drop unused columns If you are using table compression, try moving the table into a noncompressed format alter table table_name move nocompress;SQL> alter table t1 move partition p_1 nocompress;Oracle Database Enterprise Edition Version to 105 Release 101 to 102 Information in this document applies to any platform ***Checked for relevance on 18Nov11*** Symptoms A new tablespace was created;

Oregonsouth Washington Oracle Users Group Three Types Of

Oregonsouth Washington Oracle Users Group Three Types Of

Oracle Data Compression Data Compression In Oracle

Oracle Data Compression Data Compression In Oracle

ALTER TABLE MOVE COMPRESS FOR ALL OPERATIONS fails with ORA (Doc ID ) Last updated on FEBRUARY 24, 19 Applies to Oracle Database Enterprise Edition Version 112 and later Oracle Database Cloud Schema Service Version N/A and later Oracle Database Exadata Cloud Machine Version N/A and laterOracle oracle11g move Share Improve this question Follow edited Oct 31 '16 at 16 Brian Tompsett 汤莱恩 5,165 59 59 gold badges 49 49 silver badges 1 1 bronze badges asked Aug '13 at 538 user user 351 1 1 goldSelect tablespace_name from user_lobs where table_name = 'T' and column_name = 'C2';

Hybrid Columnar Compression Hcc In Oracle Exadata 1 It Tutorial

Hybrid Columnar Compression Hcc In Oracle Exadata 1 It Tutorial

Alter Table

Alter Table

This Oracle tutorial explains how to use the Oracle ALTER TABLESPACE statement with syntax and examples The ALTER TABLESPACE statement is used to modify a0306 · For Compress the existing data you should move data with compress with following command Compress existing data by moving ALTER TABLE test1 MOVE COMPRESS;Uncompress existing data by moving ALTER TABLE test1 MOVE NOCOMPRESS;Normally Table fragmentation is not a good practice only to gain space, But if we see above report table "BALDAT", Actual MB is not even 5% in such cases we can consider to reorganize that table To Compress to OLTP & Move either you can follow any one of the below commands 1) SQL> ALTER TABLE SAPR3BALDAT MOVE COMRESS FOR OLTP;

Reducing Your E Business Suite Storage Footprint Using Oracle Advance

Reducing Your E Business Suite Storage Footprint Using Oracle Advance

Online Table Move And Online Convert To Partitioned Table Youtube

Online Table Move And Online Convert To Partitioned Table Youtube

By Adityanath Dewoolkar on October 10, 15 • ( 10 Comments) ORA unsupported add/drop column operation on compressed tables Few days back, I was working on one of the UAT environments so as to drop columns from 2 tables which were already set to unused as per request from one of my application team Note For identifying unused columns for any tableYou can move subpartitions but not partitions which contains subpartitions (Shortly, you can move segments) ALTER TABLE tab_name MOVE SUBPARTITION SYS_SUBP5225 TABLESPACE newTbs; · sql> alter table move partition nocompress tablespace ;

Oracle Enable Row Movement Tips

Oracle Enable Row Movement Tips

Table Compression Ezdba Blog

Table Compression Ezdba Blog

It's based on a vague memory I have that you have to drop bitmap indexes when you first change a partition of a partitioned table to compressed, Since you · ALTER TABLE MOVE COMPRESS command The ALTER TABLEMOVE statement enables you to relocate data of a nonpartitioned table or of a partition of a partitioned table into a new segment, and optionally into a different tablespace for which you have quota This statement also lets you modify any of the storage attributes of the table or partition, including those which · The update caused Oracle to uncompress the rows being updated and, thus increase the space consumed by the table You can recompress the table after updates but that could get to be a daunting task, requiring a stored procedure for inserts, updates and deletes to the affected table or tables A second option is a scheduled job run late at night to recompress the compressed tables

Compression For Tablespaces And Tables Pak Dba

Compression For Tablespaces And Tables Pak Dba

18 Managing Space Copyright 09 Oracle All Rights

18 Managing Space Copyright 09 Oracle All Rights

ALTER TABLE test_tab_2 MODIFY PARTITION test_tab_q4 COMPRESS FOR ALL OPERATIONS;Add a default value to a column ALTER TABLE STAFF_OPTIONS MODIFY SO_INSURANCE_PROVIDER Varchar2(35) DEFAULT 'ABC Ins';Select tablespace_name from user_lobs where table

How To Identify Table Fragmentation And Remove It

How To Identify Table Fragmentation And Remove It

Redefining Tables Online Without Surprises

Redefining Tables Online Without Surprises

UPDATE If you want to change where the new partitions are created then run the bellow ddl, which change an atribute of the table where new partitions are createdThe statement is straightforward To modify a column of a table,Concept Nonpartitioned tables can be moved as an online operation without blocking any concurrent DML operations A table move operation now also supports automatic index maintenance as part of the move Non partitioned tables can be moved as online operations without blocking any concurrent DUTF8

Oracle Alter Table Alter Table Oracle By Microsoft Awarded Mvp Oracle Tutorial Learn In 30sec Wikitechy Sql Tutorial

Oracle Alter Table Alter Table Oracle By Microsoft Awarded Mvp Oracle Tutorial Learn In 30sec Wikitechy Sql Tutorial

Alter Table

Alter Table

Pro tip You can also move individual partitions of a partitioned table SQL> alter table lots_of_data move online tablespace users nocompress;Summary in this tutorial, you will learn how to use the Oracle ALTER TABLE MODIFY column statement to change the definition of existing columns To change the definition of a column in a table, you use the ALTER TABLE MODIFY column syntax as follows ALTER TABLE table_name MODIFY column_name action;Online Table Move Overview SQL> alter table lots_of_data move online tablespace users row store compress advanced;

Online Reorganization Enhancements In Oracle 12c Julian Dontcheff S Database Blog

Online Reorganization Enhancements In Oracle 12c Julian Dontcheff S Database Blog

New Features Oracle 12c

New Features Oracle 12c

 · My thoughts on Oracle About Me ;Select segment_name, sum ( bytes ) from user_segments where segment_name = 'T1' or segment_name = ( select segment_name from user_lobs where table_name = 'T1' ) group by rollup ( segment_name );ALTER TABLE COMP_TEST MOVE COMPRESS;

Flashing Back Query Table Database In Oracle Using Advanced Oracle Techniques

Flashing Back Query Table Database In Oracle Using Advanced Oracle Techniques

Database Administration Tips Rebuild Table Online Script And Claim Space In Oracle

Database Administration Tips Rebuild Table Online Script And Claim Space In Oracle

Now, when I query dba_extents I seem to have a table with 5 extents The first is 192K followed by 4 extents of size 8K Therefore, it appears that by issuing the ALTER TABLE MOVE command on a table (even with no data) Oracle has decided to allocate 4 new extents In subsequent tests with otherSELECT compression, compress_for FROM user_tables WHERE table_name = 'TEST_TAB';1900 · If you want to compress existing data inside the table, then you must perform move operation ALTER TABLE COMP_TEST MOVE NOCOMPRESS;

Rebuild Table Small Bug Toad For Oracle Beta Toad World Forums

Rebuild Table Small Bug Toad For Oracle Beta Toad World Forums

Alter Table

Alter Table

The new tablespace was renamed to have the same name as theNote that the ALTER TABLE MOVE operation acquires an EXCLUSIVE lock on the table, which prevents any DML operation on the table while the statement executes You can avoid this potential problem by using the online table redefinition feature of Oracle9i Database Compressing a Partitioned Table ALTER TABLE EMP MOVEHow to rebuild the tables with no long column

Create Table

Create Table

Speeding Up Index Access With Index Organized Tables

Speeding Up Index Access With Index Organized Tables

1606 · Today in this post, I will explain how to rebuild the oracle tables or move the different type of oracle tables using alter table move command we may want to rebuild the table for various reason like fragmentation removal ,moving to different tablespace etc Table of Contents General tables for rebuilding the oracle table is ;Table altered When there are too many partitions, you can easily generate alter table statements while querying user_tab_partitions data dictionary viewThe compression settings for tables and partitions can be modified using the ALTER TABLE command The alterations have no effect on existing data, only on new operations applied to the table ALTER TABLE test_tab_1 NOCOMPRESS;

Partitioning Lets Divide And Conquer Gavin Soorma Senior

Partitioning Lets Divide And Conquer Gavin Soorma Senior

Alter Table

Alter Table

Use the ALTERTABLEstatement to alter the definition of a nonpartitioned table, a partitioned table, a table partition, or a table subpartition For object tables or relational tables with object columns, use ALTERTABLEto convert the table to the latest definition of its referenced type after the type has been alteredCOMPRESS COMPRESS_FOR DISABLED SQL> ALTER TABLE test_tab COMPRESS;Alter table sales_range drop partition q1 * ERROR at line 1 ORA Data in a readonly partition or subpartition cannot be modified To undo the above SQL> alter table sales_range modify partition q1 read write;

Alter Table

Alter Table

Oracle Database 12c Tablespaces Data Files Handle

Oracle Database 12c Tablespaces Data Files Handle

I am Founder of SysDBASoft IT and IT Tutorial and Certified Expert about Oracle & SQL Server database, Goldengate, Exadata Machine, Oracle Database Appliance administrator with 10years experienceI have OCA, OCP, OCE RAC Expert Certificates I haveThis causes the database to lock the table during a potentially lengthy operation · ALTER TABLE tbl_nocompress MOVE COMPRESS;

Compression Methods On Exadata Create Compression Table Using Alter Table Move Part 2 Of 6 My Big Data World

Compression Methods On Exadata Create Compression Table Using Alter Table Move Part 2 Of 6 My Big Data World

Compress Data In Table Partition Oracle Enablement

Compress Data In Table Partition Oracle Enablement

Nonpartitioned tables can be moved as an online operation without blocking any concurrent DML operations A table move operation now also supports automatic index maintenance as part of the move Data maintenance on nonpartitioned tables does not require any maintenance window since it does not impact any DML or query operationI'm trying to disable compression in a database, and I've been able to do so for everything except for partitioned indexes at the index level ALTER TABLE MOVE NOCOMPRESS;I am an Oracle Certified Professional working in SAP Labs Everything written on my blog has been tested on my local environment, Please test before implementing or running in production You can contact me at amitrath0708@gmailcom View my complete profile Monday, March 4, 13 How to move partitioned tables to different tablespace Yesterday I was trying to move a partitioned table

Compression Two

Compression Two

Alter Table

Alter Table

SQL> SQL> alter table t modify default attributes nocompress;Alter table tableName move nocompress;Add a column to a table ALTER TABLE STAFF_OPTIONS ADD SO_INSURANCE_PROVIDER Varchar2(35);

Compressing Columns Oracle Magazine

Compressing Columns Oracle Magazine

Sql Statements Alter Table To Constraint Clause 2 Of 14

Sql Statements Alter Table To Constraint Clause 2 Of 14

ALTER INDEX MODIFY PARTITIONThe compression status of an existing table can be changed using the ALTER TABLE statement ALTER TABLE test_tab NOCOMPRESS;SQL> alter table city compress for all operations;

Reducing Your E Business Suite Storage Footprint Using Oracle Advance

Reducing Your E Business Suite Storage Footprint Using Oracle Advance

Bkuetc6nkvqe0m

Bkuetc6nkvqe0m

I run oracle 11g and need to move table (tbl1) from one tablespace (tblspc1) to another (tblspc2) What is the easiest way to do that?Eensure that you have enough disk space within your tablespaces before running the ALTER statement Support of compressed tables will be in future releases of OGG, however, in current V104 and V1111x, the only option, if a "move nocompress" is not possible, is to comment the compressed table orYou cannot specify tablespace storage for the overflow segment using this clause For a nonpartitioned table, you can use ALTER TABLE MOVE OVERFLOW to move the segment to a different tablespace For a partitioned table, use ALTER TABLE MODIFY DEFAULT ATTRIBUTES OVERFLOW to change the default tablespace of the overflow segment

Vishwanath Nayak Exadata Hybrid Columnar Compression

Vishwanath Nayak Exadata Hybrid Columnar Compression

The Secrets Of Oracle Row Chaining And Migration

The Secrets Of Oracle Row Chaining And Migration

Using the ALTER TABLE MOVE statement also enables compression for data that is inserted and updated, but it compresses existing data as well Similarly, you can disable table compression for an existing compressed table with the ALTER TABLENOCOMPRESS statement In this case, all data that was already compressed remains compressed, and new data is inserted uncompressedSEGMENT_NAME SUM(BYTES) SYS_LOBC$$ T1 execSQL> ALTER TABLE MEHMETDEVECI NOCOMPRESS;

Why Hybrid Columnar Compression Hroug

Why Hybrid Columnar Compression Hroug

Hybrid Columnar Compression Hcc In Oracle Exadata 1 It Tutorial

Hybrid Columnar Compression Hcc In Oracle Exadata 1 It Tutorial

ALTER INDEX REBUILD NOCOMPRESS;Table compression in Oracle 11g Posted on February 7, 13 by joda3008 This article presents new features related to table compression in Oracle 11g It's not presenting compression related to Exadata Compression option is extended in 11g and have following features requires compatibility 111 for new functionality;Therefore, with your first statement Oracle will move the table to a new segment on the same tablespace, while in the other two statements Oracle will move the table to a new segment on the specified tablespace (respectively TS1 and TS2) If TABLE1 is already on tablespace TS1 then the first and second command will perform the same action

How To Rebuild The Table In Oracle Using Alter Table Move Techgoeasy

How To Rebuild The Table In Oracle Using Alter Table Move Techgoeasy

Sql Statements Alter Table To Alter Tablespace 2 Of 3

Sql Statements Alter Table To Alter Tablespace 2 Of 3

Oracle recommends that you enable compression, deduplication, or encryption through the CREATE TABLE statement If you enable these features through the ALTER TABLE statement, all SecureFiles LOB data in the table is read, modified, and written;Alter table t1 move lob ( c ) store as securefile;Even by using, dbms_redefinition or alter table move operation, the dropped columns are not being dropped permanently We can still see it in dba_unused_col_tabs as the respective table is a Compresssed one with OLTP The approach followed by this process is, to drop and add few columns in the table fvery requently This is because, they use it

Better Together Oracle Database Compression For Oracle Database Partitioning

Better Together Oracle Database Compression For Oracle Database Partitioning

Is Oracle Advanced Compression Underestimated Julian Dontcheff S Database Blog

Is Oracle Advanced Compression Underestimated Julian Dontcheff S Database Blog

TABLE_NAME COMPRESSION COMPRESS_FOR CITY ENABLED FOR ALL OPERATIONS 1 Zeile wurde ausgewählt SQL> Der Oracle Enterprise Manager 11g Database Control verfügt ebenfalls über eine Anzeige, in der dieTable altered SQL> alter table t1 move partition p_2 nocompress;SQL> ALTER TABLE MEHMETDEVECI MOVE NOCOMPRESS;

Oracle Database 12c Tablespaces Data Files Handle

Oracle Database 12c Tablespaces Data Files Handle

Practical Space Management In Data Warehouse Environments Hamid

Practical Space Management In Data Warehouse Environments Hamid

Add two columns to a table and remove a constraint ALTER TABLE STAFF_OPTIONS ADD (SO_STAFF_ID INT, SO_PENSION_ID · alter table bar move tablespace foo storage (initial 192k next 8k);TABLESPACE_NAME USERS alter table t move tablespace small_tblsp;

Advanced Table Compression With Oracle Database 11g For Oltp Www Oracle Ckpt Com

Advanced Table Compression With Oracle Database 11g For Oltp Www Oracle Ckpt Com

Alter Table

Alter Table

Table altered SQL> SQL> alter table t add partition p3 values less than (3000); · SQL> alter table sales_range drop partition q1;Table altered SQL> SQL> select partition_name, compression, compress_for 2 from user_tab_partitions 3 where table_name = 'T';

New Features Oracle 12c

New Features Oracle 12c

Oracle 11g Data Compression Tips

Oracle 11g Data Compression Tips

Using Advanced Compression With E Business Suite Databases Oracle E Business Suite Technology Blog

Using Advanced Compression With E Business Suite Databases Oracle E Business Suite Technology Blog

Alter Table

Alter Table

Optimizing E Business Suite Storage Using Oracle Advanced Compression

Optimizing E Business Suite Storage Using Oracle Advanced Compression

18 Managing Space Copyright 09 Oracle All Rights

18 Managing Space Copyright 09 Oracle All Rights

Oracle 10g Database Administrator Implementation And Administration Chapter 8 Advanced Table Management Ppt Download

Oracle 10g Database Administrator Implementation And Administration Chapter 8 Advanced Table Management Ppt Download

How To Rebuild The Table In Oracle Using Alter Table Move Techgoeasy

How To Rebuild The Table In Oracle Using Alter Table Move Techgoeasy

Reorganizing Tables In Oracle Is It Worth The Effort Uwe Hesse

Reorganizing Tables In Oracle Is It Worth The Effort Uwe Hesse

Convert The Number Data Type From Oracle To Postgresql Part 2 Aws Database Blog

Convert The Number Data Type From Oracle To Postgresql Part 2 Aws Database Blog

Brief Introduction Into Partitioning In Oracle Uwe Hesse

Brief Introduction Into Partitioning In Oracle Uwe Hesse

Optimizing E Business Suite Storage Using Oracle Advanced Compression

Optimizing E Business Suite Storage Using Oracle Advanced Compression

Alter Table

Alter Table

How To Move Partitions Online And Make Them Read Only In Oracle 12c Uwe Hesse

How To Move Partitions Online And Make Them Read Only In Oracle 12c Uwe Hesse

Alter Table

Alter Table

Oracle 21c Blockchain Tables Blog Dbi Services

Oracle 21c Blockchain Tables Blog Dbi Services

Ludovico Caldara About Oracle Partitioning And Basic Compression No Adv Comp Required Alter Table Move Partition Compress Alter Table Move Partition Online Adv Comp

Ludovico Caldara About Oracle Partitioning And Basic Compression No Adv Comp Required Alter Table Move Partition Compress Alter Table Move Partition Online Adv Comp

Online Operations In Oracle Ppt Download

Online Operations In Oracle Ppt Download

Oracle11g Table Compression Programmer Sought

Oracle11g Table Compression Programmer Sought

Alter Table

Alter Table

Compression Methods On Exadata Compression On Partition Tables Part 4 Of 6 My Big Data World

Compression Methods On Exadata Compression On Partition Tables Part 4 Of 6 My Big Data World

Oracel Exadata Hybrid Columnar Compression Saves Space

Oracel Exadata Hybrid Columnar Compression Saves Space

Oracle 11g Data Compression Tips

Oracle 11g Data Compression Tips

Better Together Oracle Database Compression For Oracle Database Partitioning

Better Together Oracle Database Compression For Oracle Database Partitioning

Alter Table

Alter Table

Oracle的compress功能历史变迁 11gr2

Oracle的compress功能历史变迁 11gr2

Alter Table

Alter Table

Alter Table

Alter Table

Alter Index

Alter Index

Better Together Oracle Database Compression For Oracle Database Partitioning

Better Together Oracle Database Compression For Oracle Database Partitioning

Alter Table

Alter Table

Search Results For Tibero Lightweight Dimensigon

Search Results For Tibero Lightweight Dimensigon

Alter Table

Alter Table

Reorganizing Tables In Oracle Is It Worth The Effort Uwe Hesse

Reorganizing Tables In Oracle Is It Worth The Effort Uwe Hesse

Alter Table

Alter Table

Sql Data Definition Statements Springerlink

Sql Data Definition Statements Springerlink

Table Compression Ezdba Blog

Table Compression Ezdba Blog

Oracle Enable Row Movement Tips

Oracle Enable Row Movement Tips

How To Move Partitions Online And Make Them Read Only In Oracle 12c Uwe Hesse

How To Move Partitions Online And Make Them Read Only In Oracle 12c Uwe Hesse

Oracle Compression Oracle Database Data Compression

Oracle Compression Oracle Database Data Compression

Alter Table

Alter Table

Incoming Term: oracle alter table move nocompress, oracle alter table move compress, oracle alter table move compress for query high, oracle alter table move compress online, oracle alter table move compress parallel, oracle alter table move compress for oltp, oracle alter table move compress for archive high, oracle alter table move compress basic, oracle alter table move partition nocompress, oracle alter table move partition compress,

コメント

このブログの人気の投稿

Kuda shaders ダウンロードできない 159691-Kuda shaders ダウンロードできない

[10000ダウンロード済み√] ポケモン コインコレクション 148573-ポケモン コインコレクション

√画像をダウンロード ポケモン 鋼 タイプ 309923-ポケモン カード 鋼 タイプ おすすめ