Skip to Content
24x7 Support
Email: mail@example.com
Call Us +(21) 1234 5678

    • Home
    • MSSQL
      • SQL On Linux
      • T-SQL Scripts
    • Sybase ASE
      • Sybase Scripts
    • Sybase Replication
    • Sybase IQ
    • Linux
    • Search for:

    Tag Archives: Sybase Identity column

    1. Home  - 
    2. Posts tagged "Sybase Identity column"
    18 Dec, 2021
    How to find text, image and identity columns in Sybase database 0 (0)
    Sybase ASE Sybase Identity column, Sybase Image column, Sybase text column

    Below query can be used to get list of tables having text,image and identity columns in Sybase database.

    use <DBNAME /** replace your database name here **/
    go
    select @@servername "Server", db_name() "DB", o.name as "Table_Name",
    user_name(o.uid) as "owner",
    … Read the rest

    10 Dec, 2021
    How to find tables having text columns in Sybase database 0 (0)
    Sybase ASE Sybase Identity column, Sybase text column

    Below query can be used to get list of tables having text columns in Sybase database. here syscolumns type value "35" represents text column.

    use <DBNAME /** replace your database name here **/
    go
    select @@servername "Server", db_name() "DB", distinct
    … Read the rest

    4 Dec, 2021
    How to find tables having Image columns in Sybase database 0 (0)
    Sybase ASE Sybase Identity column, Sybase Image column, Sybase text column

    Below query can be used to get list of tables having text columns in Sybase database. here syscolumns type value "34" represents image column.

    use <DBNAME /** replace your database name here **/
    go
    select @@servername "Server", db_name() "DB", distinct
    … Read the rest

    21 Nov, 2021
    How to check identity tables in Sybase database 0 (0)
    Sybase ASE Sybase Identity column, Sybase Image column, Sybase text column

    Below query can be used to find identity tables in Sybase database.

    1select @@servername 'Server',db_name() 'DB',convert(char(35),object_name(id)) as "Table_Name", convert(char(35),name) as "Column_Name" from syscolumns where status=128
    2go

    Sample output:

    … Read the rest

    Recent Posts
    • SQL Server: T-SQL Script to find object level permission of specific table
    • SQL Server: T-SQL Script to find object level permission of user database
    • T-SQL Script to get user with DB OWNER role in SQL Server
    • T-SQL script to list all database user access in SQL Server
    • T-SQL script to find active processes in SQL Server

    Pages

    • About Me
    • Contact
    • Disclaimer
    • Privacy Policy

    Categories

    • Linux (8)
    • MSSQL (75)
      • SQL On Linux (15)
      • T-SQL Scripts (19)
    • Sybase ASE (26)
      • Sybase Scripts (1)
    • Sybase IQ (3)
    • Sybase Replication (27)
    • Uncategorized (1)

    Archives

    Copyright © 2025 | Powered by Neom