Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: Inserting Images

    hi!

    for storing images (which is BINARY data) you'd use the datatype "image". text/ntext are for alphanumeric data (respectively unicode alphanumeric data).

    depending on how you access your DB from client side,...

  • RE: Dropping Constraints

    to just disable your constraints (all of them) for all tables, you could use:

    execute sp_msforeachtable @command1='alter table ? nocheck constraint all'

    similarily use:

    execute sp_msforeachtable @command1='alter table ? check constraint all'

    to enable...

  • RE: coversion of data type

    hi bruce,

    this IS an integer 😉 it even fits into a standard 32bit signed int ...

    best regards,

    chris.

  • RE: Solaris file saving to floppy

    quote:


    I personally would try to use ftp instead of copying files to a floppy. Ascii files on the Solaris system would...

  • RE: db in suspend mode

    if your whole server enters suspend mode, you should consider looking for a new job ... 😉

  • RE: Solaris file saving to floppy

    hi!

    use a DOS formatted floppy, type mount /floppy/floppy0, cp your files, type eject /floppy/floppy0

    regards,

    c.

Viewing 6 posts - 1 through 6 (of 6 total)