Forum Replies Created

Viewing 15 posts - 6,226 through 6,240 (of 7,164 total)

  • RE: sql server free versions

    IIRC Personal Edition was not free.

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

  • RE: Splitting qualified name into table and schema

    seth delconte (6/6/2011)


    Nice avatar 🙂

    Awesome 😎

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

  • RE: sql server free versions

    Possible values for Edition property:

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

    Express Editions:

    > 'Express Edition'

    > 'Express Edition with Advanced Services'

    MSDE:

    > 'Desktop Engine' (Not available for SQL Server 2005 and later versions.)

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

  • RE: Splitting qualified name into table and schema

    Red flags everywhere :exclamation:

    It sounds like you're headed into dynamic-sql-hell :sick:

    Are you confident in your design? If not, if you want to share a bit more about what you're trying...

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

  • RE: search pattern in select statement

    My solution makes use of a Tally table. If you're unfamiliar with those please have a look through this article: http://www.sqlservercentral.com/articles/T-SQL/62867/%5B/url%5D

    Build Tally table:

    --=============================================================================

    -- Setup

    --=============================================================================

    USE tempdb...

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

  • RE: Re-install Dot Net on a SQL 2005 box?

    Yikes! Risky assignment.

    It does not appear that the product itself requires the .NET Framework, but the Installer does :hehe:

    http://technet.microsoft.com/en-us/library/ms143506(SQL.90).aspx

    That said, if you're using SQLCLR you may have issues if you...

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

  • RE: ActiveX Script to Script databases to file

    If you're ditching SQLDMO you might as well ditch VB Script as well and move to PowerShell. There are tons of examples online of scripting out DB objects using PowerShell...

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

  • RE: Partial text searches inside an XML DataColumn

    You can use the LIKE operator on the results of an XQuery value() function.

    Modified Example B from http://msdn.microsoft.com/en-us/library/ms178030.aspx

    USE AdventureWorks

    GO

    SELECT CatalogDescription.value('

    declare namespace PD="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelDescription";

    ...

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

  • RE: Update sybase table based on sql server table

    SSIS does not work like that.

    You'll need to pull the SQL Server data into an SSIS recordset, iterate over it and issue an update in Sybase for each row.

    Or...

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

  • RE: Simple Web Service for SQL Server 2008 R2

    Direct from Kevin Cox (on Microsoft SQLCAT Team) in a "What's new in SQL 'Denali'?" presentation HTTP endpoints were pulled from the SQL Server product almost as a direct result...

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

  • RE: Using SSIS to read from MySQL

    Just a stab in the dark:

    MySQL requires that each login be associated with an IP address or range. Is your server coming from an IP that is in the range...

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

  • RE: Job did not run according to schedule

    Ninja's_RGR'us (6/6/2011)


    Nope I don't have that UDF.

    USE msdb

    GO

    IF EXISTS ( SELECT *

    FROM sys.objects

    ...

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

  • RE: datamodel design patterns / your design opinion

    +1 from me too

    I agree that you have chosen a good starting point.

    Pros:

    > You'll get type-safety out of your PropertyType-specific tables

    Cons:

    > You will avoid the trap of creating one...

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

  • RE: Please give me an example of a T-SQL Statement that does user maping

    I am assuming you are not familiar with the "Script" button in the SSMS Login Properties dialog (and most other dialogs in SSMS).

    Make the changes in the SSMS dialog and...

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

  • RE: Job did not run according to schedule

    Uggh, I can empathize. I have always just knocked these cases out manually.

    Do you have any util UDFs in place to help with the INT to DATE/TIME conversions in MSDB?...

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

Viewing 15 posts - 6,226 through 6,240 (of 7,164 total)