<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="https://sqlines.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://sqlines.com/feed.php">
        <title>SQLines Tools sybase-to-oracle</title>
        <description></description>
        <link>https://sqlines.com/</link>
        <image rdf:resource="https://sqlines.com/lib/images/favicon.ico" />
       <dc:date>2026-05-06T01:35:43+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://sqlines.com/sybase-to-oracle/char?rev=1764837623&amp;do=diff"/>
                <rdf:li rdf:resource="https://sqlines.com/sybase-to-oracle/convert_datetime?rev=1672225010&amp;do=diff"/>
                <rdf:li rdf:resource="https://sqlines.com/sybase-to-oracle/convert_string_datetime?rev=1672228170&amp;do=diff"/>
                <rdf:li rdf:resource="https://sqlines.com/sybase-to-oracle/datename?rev=1672328311&amp;do=diff"/>
                <rdf:li rdf:resource="https://sqlines.com/sybase-to-oracle/day?rev=1672183039&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://sqlines.com/lib/images/favicon.ico">
        <title>SQLines Tools</title>
        <link>https://sqlines.com/</link>
        <url>https://sqlines.com/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="https://sqlines.com/sybase-to-oracle/char?rev=1764837623&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-12-04T08:40:23+00:00</dc:date>
        <title>CHAR Data Type - Sybase ASE to Oracle Migration</title>
        <link>https://sqlines.com/sybase-to-oracle/char?rev=1764837623&amp;do=diff</link>
        <description>In Sybase ASE, the CHAR(n) data type stores fixed-length, blank padded character strings with the maximum size of @@pagesize bytes. 

In Oracle, CHAR(n) can store up to 2,000 bytes.

Sybase ASE:


  -- Review the pagesize
  SELECT @@pagesize
  /* 2,048 */
  
  -- Sample table
  CREATE TABLE specs
  (
    note   CHAR(30),
    data   CHAR                       -- CHAR(1)
  );</description>
    </item>
    <item rdf:about="https://sqlines.com/sybase-to-oracle/convert_datetime?rev=1672225010&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-12-28T10:56:50+00:00</dc:date>
        <title>CONVERT - String to Datetime - Sybase ASE to Oracle Migration</title>
        <link>https://sqlines.com/sybase-to-oracle/convert_datetime?rev=1672225010&amp;do=diff</link>
        <description>In Sybase Adaptive Server Enterprise (ASE) you can use CONVERT function to convert a string expression in the specified format (style) to a datetime data type (DATE, DATETIME etc.). In Oracle you can to use TO_TIMESTAMP function.

Note that Sybase ASE CONVERT and Oracle formats are different.</description>
    </item>
    <item rdf:about="https://sqlines.com/sybase-to-oracle/convert_string_datetime?rev=1672228170&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-12-28T11:49:30+00:00</dc:date>
        <title>CONVERT - Datetime to String - Sybase ASE to Oracle Migration</title>
        <link>https://sqlines.com/sybase-to-oracle/convert_string_datetime?rev=1672228170&amp;do=diff</link>
        <description>In Sybase Adaptive Server Enterprise (ASE)  you can use CONVERT function to convert a DATETIME value to a string with the specified format. In Oracle you can use TO_CHAR function. 

Note that Sybase ASE CONVERT and Oracle formats are different. 

Sybase ASE:</description>
    </item>
    <item rdf:about="https://sqlines.com/sybase-to-oracle/datename?rev=1672328311&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-12-29T15:38:31+00:00</dc:date>
        <title>DATENAME Function - Sybase ASE to Oracle Migration</title>
        <link>https://sqlines.com/sybase-to-oracle/datename?rev=1672328311&amp;do=diff</link>
        <description>In SAP Sybase Adaptive Server Enterprise (ASE) you can use DATENAME function to extract the specified unit (a date part such as year, month, day etc.) from a datetime value. In Oracle you can use TO_CHAR function with the specific format type.

Sybase ASE:</description>
    </item>
    <item rdf:about="https://sqlines.com/sybase-to-oracle/day?rev=1672183039&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-12-27T23:17:19+00:00</dc:date>
        <title>DAY Function - Sybase ASE to Oracle Migration</title>
        <link>https://sqlines.com/sybase-to-oracle/day?rev=1672183039&amp;do=diff</link>
        <description>In Sybase Adaptive Server Enterprise (ASE) you can use DAY function to get the day (an integer number) of the specified datetime. In Oracle you have to use EXTRACT(DAY FROM datetime) function.

Sybase ASE:


  -- Get the day
  SELECT DAY('2022-12-28'); 
  # 28</description>
    </item>
</rdf:RDF>
