Forum Replies Created

Viewing 15 posts - 781 through 795 (of 1,109 total)

  • RE: Are #temptables unique?

    Both of them have their places. But do not store much data in table variables. Not only they suffer from the above performance problems, you cannot create non-clustered indexes on...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Wrong number of partition in sys.partitions query

    Also, if you are interested about how the tables are stored, it may be better to look at sys.data_spaces instead of sys.partitions. The sys.indexes data_space_id references the data_space_id in...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Are #temptables unique?

    As one of those other people who will point out some of the differences, I suggest you have a look at http://www.sql-server-performance.com/articles/per/temp_tables_vs_variables_p1.aspx

    Under 2005 the performance of table variables for large...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Wrong number of partition in sys.partitions query

    A table may be stored on more than one partition even though it is not explicitly partitioned. I'm not sure about the exact rules that trigger the additional partitions, but...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Concatenating field data from duplicate row into one field

    Hi Paul,

    under 2005 you could use a join, and use a trick with xml path to concatenate the column values.

    Under 2000, where xml path is not supported you could create...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Are #temptables unique?

    local temptables have the scope of a connection, the name SQL Server creates for them in tempdb is postfixed with undescores and some number.

    Regards,

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Get the old SQL servername

    If this is a 2000 server, you could look at msdb..sysjobs. Chances are good that the local jobs have not been updated properly, and the originating_server is set to the...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Seperate digits

    Information may have been lost during the concatenation/storing this data in a single column. Probably it will not always be possible to get this information back. E.g 13-19 may need...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Hepl!! could a Trigger/Job solve my problem?

    You may want to have a look at http://sql-server-performance.com/Community/forums/p/14315/82960.aspx

    This would set up the job from inside a trigger. However, I'd agree with John that a nicer solution would be to...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: compatibility level question

    Some compat mode 80 issues are on: http://www.sqlservercentral.com/Forums/Topic407783-146-1.aspx

    Regards,

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Orphaned User

    EXEC sp_MSForeachDB "use ? Exec sp_change_users_login 'Report'"

    Regards,

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Bulk Insert

    after copying your example to G:\bulk1.txt:

    BULK INSERT bulk1 FROM 'G:\bulk1.txt' WITH ( FIELDTERMINATOR = ',',

    ROWTERMINATOR = '\n', FIRSTROW = 2 )

    seems to work for me. Are...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Table Partitioning

    Hi TJ,

    much depends on the type of disks you have (whether all your disks are the same speed/ you have some slower ones), whether there is a sensible way to...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: hash partitioning Vs. Hash join

    Hi Sandy,

    Sandy (10/11/2007)


    Hi All,

    1st Qst : I am really Confused why I will use Hash Join,

    I mean to say in what circumstances I can use hash join,

    and what...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Convert trial version into full version?

    Hi Jan,

    I've fixed the link in the original post. The one that did not work was to another thread on SQL Server Central http://www.sqlservercentral.com/Forums/Topic402984-146-1.aspx

    Both links should now work,

    Regards,

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

Viewing 15 posts - 781 through 795 (of 1,109 total)