Forum Replies Created

Viewing 15 posts - 1,051 through 1,065 (of 1,109 total)

  • RE: Incremental Update on Very Large Table

    While partitions are elegant , they do require some time too look at (I should have mentioned this). James's solution is simpler and could...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How to transfer hierarchical output from stored procedure into well-formed xml.

    You could produce XML in a stored procedure, and then just use XSLT to make it nice. Of course you need to consider the supporting browsers, whether you want some...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Incremental Update on Very Large Table

    If you are on Enterprise edition, you may want to consider table partitions. SQL Server allows you then to swap in/out individual partitions, which can have their own indexes as...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: TEMP DB

    Among others temporary tables are stored in tempdb. Large and complex queries from other databases also use the tempdb. use sp_spaceused to get some basic information on how much space...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Indexed Views - EXACTLY what is stored...

    Indexed views are actually quite handy, and can increase query performance. SQL Server's query optimizer does use them automatically, even if the view is not referenced. You are right however...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Opening Ports

    I'm glad that you have isolated the problem,

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Indexed Views - EXACTLY what is stored...

    In case someone does not post a validation to what I said (it is not particularly overdocumented) :

    You can validate it yourself by:

    Create...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Opening Ports

    The fact that you can connect to 1433 is a good sign. This should mean that SQL Server is listening on that port, and that you can connect to it....


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Indexed Views - EXACTLY what is stored...

    SQL Server stores only the columns that are in the view. This of course means that data will be duplicated, but only for the columns that are part of the...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Opening Ports

    SQL Server listens on TCP port 1433 (the default instance). Try connecting to this port from the remote machine using telnet or something similar. Also, if you have a named...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Opening Ports

    Yes. This must be enabled if you want to connect to the SQL Server via TCP/IP. As Steve mentioned, named pipes can be used for local connections only.

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Opening Ports

    Do you have TCP connections enabled for the server (use Surface Area Configuration to check/set this)

    Regards,

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Backup SQL Server 2000 Restore to SQL Server 2005

    Yes it is. If you do this the database on the 2005 server will be in compatibility mode 80.

    Regards,

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Sql server is not listening on TCP

    Is your SQL Server Browser Service running?

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: can we create a synonym for a symmetric key

    Synonyms can only be created for tables, views, functions, stored procedures and extended stored procedures. (And there are some limitations even for these.)

    This post looks like http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=149&messageid=391743

    Regards,

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

Viewing 15 posts - 1,051 through 1,065 (of 1,109 total)