Forum Replies Created

Viewing 15 posts - 6,886 through 6,900 (of 7,164 total)

  • RE: SQL Mail

    See if this post helps: http://www.sqlservercentral.com/Forums/Topic341391-149-1.aspx

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

  • RE: Data conversion

    tommyh (3/18/2011)


    I was hoping that SQL would fail on the last comma in the create table part. But SQL was just as happy to create a table like that.

    /T

    I...

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

  • RE: CDATA In TSQL Script

    The purpose of CDATA is to instruct the XML interpreter that everything within it should be treated as character data, and not markup. The CDATA tag still must contain legal...

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

  • RE: CDATA In TSQL Script

    Good deal!

    As a side note, you can drop this piece of code. It just adds unnecessary overhead because that declaration is implied by SQL Server, notice how it is not...

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

  • RE: CDATA In TSQL Script

    Not all characters are valid in XML. Your code looks fine. You have some bad data in the mix that you'll need to cleanse...either that or escape it before casting...

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

  • RE: combining XML tags

    I was just helping someone on [what I thought was] an unrelated issue last week and their issue turned out to be the OLE DB data source 😀

    http://www.sqlservercentral.com/Forums/Topic1073400-148-1.aspx

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

  • RE: Trailing spaces in WHERE-Clause

    TEST! TEST! TEST! ...I should not have taken Bart's word on collations for granted! Thanks J. Drew. Why did you stop blogging?

    alexander.kaltenbrunner, you can do as J. Drew suggested and...

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

  • RE: WMI Query for OS_version,IP Address,Domain_nm

    This site is specific to SQL Server. Not that you won't get help here, but you may have more luck in one of the Windows Development forums where you'll have...

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

  • RE: Trailing spaces in WHERE-Clause

    Using a binary collation was my initial thought. I suspect that adding the check for datalength will be slower than using the collation method but have not tested out that...

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

  • RE: how determine max memory setting

    The max memory guidelines in the article should still be valid for 32-bit. The /3GB switch will add 1GB to directly addressable memory for SQL Server to get into which...

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

  • RE: how determine max memory setting

    Glenn Berry is a trusted source:

    http://www.sqlservercentral.com/blogs/glennberry/archive/2009/10/29/suggested-max-memory-settings-for-sql-server-2005_2F00_2008.aspx

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

  • RE: can't connect to sql 2000 from ssms 2008

    I ran into a similar issue using Linked Servers to reach a MySQL DB, but it was on SQL 2005. The issue traced back a driver issue where it was...

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

  • RE: Load flat file source data to different destination flat files.

    Look into using the Conditional Split Data Flow Transformation in your Data Flow task.

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

  • RE: combining XML tags

    rs80 (3/17/2011)


    Pretty cool stuff...

    So I think what you're saying is that even though SSMS has the limitation of truncating the XML when showing the results in grid or text (what...

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

  • RE: Login Fails when accessing other server thru SSIS/SQL Agent

    You need to provide the password when running the package from the command line.

    From MSDN article "How To Run a Package" http://msdn.microsoft.com/en-us/library/ms138023.aspx:

    If the package encryption level is EncryptSensitiveWithPassword or EncryptAllWithPassword,...

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

Viewing 15 posts - 6,886 through 6,900 (of 7,164 total)