Q&A

  • ORA-01467: 정렬 키가 너무 깁니다
이 에러를 보신분!!!

오라클에서 select 하는데.. 에러가 나네요.

아신분분.. 알려주세용

2  COMMENTS
  • Profile
    송병철 2001.08.28 04:13
    강** wrote:

    > 이 에러를 보신분!!!

    > 오라클에서 select 하는데.. 에러가 나네요.

    > 아신분분.. 알려주세용



    SQL Execution Message를 참조하면 이런 설명입니다.



    ORA-01467 : A Distinct, Group By, Order By, or SET operation requires s sort key

    longer than that supported by Oracle.

    Either too many columns or too many group functions where specified

    in the SELECT statement.



    Action : Reduce the number of column or group functions involved in the operation





    위의 설명대로 GROUP BY, ORDER BY 절등에서 그룹함수명을 쓰는데 select 절에 사용한

    문장의 칼럼명을 그대로 다 쓰신듯한데,칼럼명이 넘 많다네요. .., 줄여보세요..

    꼭 필요한 칼럼명만 group by 등 그룹함수 등에서 쓰세요..

  • Profile
    강** 2001.08.28 18:43
    송병철 wrote:

    > 강** wrote:

    > > 이 에러를 보신분!!!

    > > 오라클에서 select 하는데.. 에러가 나네요.

    > > 아신분분.. 알려주세용

    >

    > SQL Execution Message를 참조하면 이런 설명입니다.

    >

    > ORA-01467 : A Distinct, Group By, Order By, or SET operation requires s sort key

    > longer than that supported by Oracle.

    > Either too many columns or too many group functions where specified

    > in the SELECT statement.

    >

    > Action : Reduce the number of column or group functions involved in the operation

    >

    >

    > 위의 설명대로 GROUP BY, ORDER BY 절등에서 그룹함수명을 쓰는데 select 절에 사용한

    > 문장의 칼럼명을 그대로 다 쓰신듯한데,칼럼명이 넘 많다네요. .., 줄여보세요..

    > 꼭 필요한 칼럼명만 group by 등 그룹함수 등에서 쓰세요..