Forum Replies Created

Viewing 15 posts - 5,356 through 5,370 (of 7,164 total)

  • RE: DBCC Errors -Migarting SQL 2000 database to SQL 2005

    Sqlsavy (7/27/2011)


    Thank you all.

    Well I ran the upgrade adviser on SQL 2000 server and books online says

    In earlier versions of SQL Server, system object and system type names are matched...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to Assign SSIS User Variable (DOUBLE) from Execute SQL Task

    Is it a CLR user-defined type (UDT), or a T-SQL UDT?

    Try capturing the value as an SSIS double with this as your Execute SQL Task source:

    SELECT CAST(MainID AS FLOAT)...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS package not completing when running from SQL Server Agent job

    Chances are it is not a permission issue related to reaching the executable or related to something the SSIS package or executable are trying to do otherwise the job would...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Multiple instances on a single port and relationship to Named Pipes protocol

    Disclaimer: I am relying on my knowledge of how SQL Server Browser is meant to work. I have never actually worked in this exact scenario.

    I think you're running into an...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Are Database Owner changes pushed to secondary Log Shipping instances?

    Thanks for the reply Leo.

    This is a DR scenario so the three secondary databases I have are all in Standby/Read-Only mode. The Read-Only part might be the deal-breaker and I'm...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Design suggestions for Large SQL 2008 table (several billion+ rows)

    You are bordering on "get a consultant"...but I'll throw in my two cents.

    pete 85875 (7/26/2011)


    We have a single table with historical time series data which has over 2 billion rows...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Multiple instances on a single port and relationship to Named Pipes protocol

    dan.forest (7/26/2011)


    For newly introduced corporate security reasons, I need to run 3 instances of SQL Server 2005 on the same host computer, all on port 1433. I got this to...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: DBCC Errors -Migarting SQL 2000 database to SQL 2005

    GilaMonster (7/26/2011)


    Ninja's_RGR'us (7/26/2011)


    Assuming the db is usable on sql 2000, wouldn't scripting the tables and redeploying on 2k5 (or even 2000), possibly after changing the collation to something else "save...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: DBCC Errors -Migarting SQL 2000 database to SQL 2005

    GilaMonster (7/26/2011)


    opc.three (7/26/2011)


    What does this return on SQL 2000?

    SELECT DISTINCT

    collation

    FROM syscolumns

    WHERE id = OBJECT_ID('SALES')

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: DBCC Errors -Migarting SQL 2000 database to SQL 2005

    What does this return on SQL 2000?

    SELECT DISTINCT

    collation

    FROM syscolumns

    WHERE id = OBJECT_ID('SALES')

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Will uninstall and reinstall of .NET Framework affect an existing SQL Server 2008 installation

    This question came up before and IIRC .NET FW is only required for the installation package of SQL Server, not for the actual product itself.

    That said, if you have any...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Specifying different server name in query

    How large of a table is TB_ARTICLE? By "compare the 2 tables in different servers" if you mean to sync data between them, i.e. from the looks of your query...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Help with IF Statement

    SQLkiwi (7/25/2011)


    Converting to bit promotes any nonzero value to 1.

    See http://msdn.microsoft.com/en-us/library/ms191530.aspx

    This is true for implicit as well as explicit conversions:

    DECLARE @bit BIT ;

    -- no error on implicit conversion from number...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Estimate Table size

    SQLRNNR (7/26/2011)


    That's cool. For the record - I was just teasing.:hehe::hehe::hehe:

    😎 Cool, just giving you due credit, I was not trying to bypass it in my earlier post, just...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Estimate Table size

    SQLRNNR (7/26/2011)


    opc.three (7/26/2011)


    DIB IN (7/26/2011)


    http://msdn.microsoft.com/en-us/library/ms189124%28v=SQL.90%29.aspx

    This above article defines to estimate table size based on table structure and number of estimated records for the table.

    While estimating a table size I found...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 5,356 through 5,370 (of 7,164 total)