Forum Replies Created

Viewing 15 posts - 841 through 855 (of 1,109 total)

  • RE: ignore insertion

    You can disable check constraints and foreign keys by executing for each of them the

    ALTER TABLE mytable NOCHECK CONSTRAINT name_of_constraint

    for the indexes you can disable them (see alter index),...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: equivalent column in sql server 2005 for cdefault column of syscolumns table

    Sys.columns has a default_object_id. This is the id of the default, which you can access via the sys.default_constraints system view. The sys.default_constraints shows the definition of the default in the...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Restore databases (sql version 7) to a server that have sql version 2000

    Lester Policarpio (10/1/2007)


    The 2 databases(version 7) that will be restored in different server is 70 and those databases in the server with ms sql version 2000 is 80 any problem...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How can I script out an existing table using TSQL

    Babu Mannaravalappil (10/1/2007)


    Thanks all for the replies.

    I already wrote an application using SMO to iterate through all the objects in a given database and populate a tree. The business...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Restore databases (sql version 7) to a server that have sql version 2000

    Do check your database's compatibility level after the restore, and set it if you are not happy with it.

    see sp_dbcmptlevel

    Regards,

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Table Description

    ckmoied (10/1/2007)


    ...

    I don't know how to use syscolumns. Please give example.

    syscolumns contains a row for every column/paramter in your database.

    select * from syscolumns

    In syscolumns you get the identifier of...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: question about backup

    FerasGer83 (9/28/2007)


    i want to ask a question about the principle of backing up data.

    what's the benefit of backing up log files?

    if we have the data, what we could need log...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How to get total objects in a Database?

    Babu Mannaravalappil (9/27/2007)


    Hi all,

    I am using .net 2/C# to write an application that will populate a tree with all the objects available in any given database on a particular Sql...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How can I script out an existing table using TSQL

    Babu Mannaravalappil (9/30/2007)


    Hi All,

    Is there a way to extract the script for an existing database object (table for example) programatically using T-SQL system objects or procedures? I know I...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Full Text Indexing

    David Putman (9/28/2007)


    I need to run some searches with a full text index but at present I am developing on a laptop with SQL 2000 and I have no access...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Duplicate index name

    andri (9/30/2007)


    Hi all,

    Anyone can help me with my issue,

    I migrate my database from MS-SQL 7.0 to MS-SQL 2005,

    then for this table, every time i did an update to the...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How to find Record length in a table in bytes

    Jai (10/1/2007)


    Hi

    How to find Record length in a table in bytes

    You can calculate this yourself. The basic formula is along the lines of:

    6 (status bits, .. header like stuff)...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: sql server 2005 upgrade

    x-portal (9/28/2007)


    Did upgrade...I unistalled 2000 and installed 2005. I think i did it wrong. Cause i lost all the user names and linked servers. But I dunnot what i did...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Restore SQL 2000 BAK in 2005 – web application doesn’t always load content

    Unfortunately your exception message got truncated. java.lang.Short is a class, and the full exception message should contain a bit more information 🙂

    Have you tried debugging the above application? If...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Restore SQL 2000 BAK in 2005 – web application doesn’t always load content

    mkhines (9/28/2007)


    I have a web application that works perfectly fine on SQL 2000. It’s written in JSP and on a Tomcat/Apache web server.

    I set up on a laptop...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

Viewing 15 posts - 841 through 855 (of 1,109 total)