Forum Replies Created

Viewing 15 posts - 106 through 120 (of 187 total)

  • RE: MSDTC and sql server on cluster

    irena.bulatovic (3/4/2009)


    Even if my server is cluster? This means that it does not need msdtc for failover?

    It should not matter if you are on a cluster or not. ...

  • RE: sqlcmd remote connections error

    I believe your issue is that you have a lower case "s" instead of an upper case "S"

    try doing

    sqlcmd -S servername i- filename

    instead of

    sqlcmd -s servername i- filename

    -S is...

  • RE: Order by FLOAT field

    Seems like you have something strange happening here.

    I run the following code

    create table floattest (id int identity(1,1), flval float)

    insert into floattest

    select flval from (Values (36.8413614879047), (16.094379124341), (6.23832462503951),

    (27.6310211159286), (18.4206807439524),...

  • RE: Upgrade from 2000 to 2005 or to 2008

    I definitely tend to agree with Ed and George on this one. I would personally prefer to stay as current with the technology as humanly possible when given the...

  • RE: MSDTC and sql server on cluster

    irena.bulatovic (3/2/2009)


    thus this means that if I have transactions just on my server that I do not need msdtc?

    That is correct. As long as you are not distributing transactions...

  • RE: HierarchyID for Multiple Root Nodes

    Any possibility of two different table structures that you could bring together through views?

    Or perhaps you could create your own hierarchy structure that essentially works in the...

  • RE: Creating DTS package will create a job in Sqlserver Agent?

    Moving a package from a SQL 2000 over to a SQL 2005 server will definitely not create a job for you to run that package. That is something you...

  • RE: Using a UDF in a CHECK constraint

    I honestly have no idea what the thought process was behind this.

    However, I suppose it is logical that since the Constraint exists on the table that the data would have...

  • RE: Connection to a global temporary table

    A global (##) temp table can be dropped from any connection (not just the one that created it). A regular (#) temp table is tied to the connection...

  • RE: Connection to a global temporary table

    I may be misunderstanding the question but if you are trying to get rid of a global temp table that should be as easy as find the table name

    (select...

  • RE: Using a UDF in a CHECK constraint

    Your problem here is that the row that is causing it to fail is the row you are adding on the insert (it inserts, then checks so it will fail...

  • RE: Restore after removing database file - Can't recover database

    Based on the script you have here, it does not look like you have the tail of the transaction log backed up and that seems to be causing the problem....

  • RE: Copy SQL Server Objects from SQL 2000 to SQL 2008

    If you want to load data from a SQL 2000 into a SQL 2008 try using the SQL 2008 Import/Export tools instead. In just doing a quick test...

  • RE: SQL 2005 Reporting Services - Scheduling

    Stamey (2/19/2009)


    You have a security problem, most likely, because SSRS in the Standard edition does have subscription capabilities. All I run here is Standard edition and I have subscriptions running...

  • RE: Global vs Local Temporary Tables

    This runs incredibly fast on my local machine as well (not remotely fast desktop).

    I am guessing with 3500 DB's you may very well be having some contention issues on tempdb...

Viewing 15 posts - 106 through 120 (of 187 total)