Forum Replies Created

Viewing 15 posts - 1,366 through 1,380 (of 6,033 total)

  • RE: Learning Data Modeling

    Sean Redmond - Monday, July 10, 2017 12:34 AM

    I have two points:

     1. I wish that developers (at least, our developers anyway) would...

  • RE: The Panjandrum Conundrum

    SQL is a lot like HTML, I'm sure they don't want to get too far ahead of the ANSI standards and end up with a lot of proprietary extensions in...

  • RE: Birds of a Feather

    bernard black - Monday, July 10, 2017 11:07 AM

    I'm a member  of the Prohibition Party. (yes there is one) .  Where does...

  • RE: The Panjandrum Conundrum

    Careful challenging the wisdom of the gods.

  • RE: Change SSN in textbox

    This should basically be it.


    ALTER Function [dbo].[RemoveNumericCharacters](@Temp VarChar(1000))
    Returns VarChar(1000)
    AS
    Begin

    Declare @NumRange as varchar(1000);

    SET @NumRange = '%[^0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9][^0-9]%';
    While PatIndex(@NumRange, @Temp)...

  • RE: Change SSN in textbox

    You'll need to post T-SQL for RemoveNumericCharacters() function, that's where the coding will go.

  • RE: Change SSN in textbox

    You can leverage the PATINDEX and SUBSTRING functions for this.


    DECLARE @s-2 VARCHAR(500)= 'The quick brown foxes ssn is 111111111 or 111-11-1111 for your info';
    DECLARE...

  • RE: Frustrating Programming Policies

    What's interesting is how these misguided policies actually encourage bad SQL programming practices.

    "A SELECT statement can not have more than two tables joined together..."


    Hey, boss-man, when...

  • RE: Learning Data Modeling

    Typical programming books like "Database Programming with C#" may cover data modeling to come extent, but it's more of an afterthought and rather sparse.

    Ralph Kimball has some excellent...

  • RE: Learning Data Modeling

    Perhaps the best way to proliferate a process is to make tools for the process ubiquitous. There is a rudimentary Database Diagram tool in SSMS, but it hasn't changed in...

  • RE: Are the posted questions getting worse?

    Grant Fritchey - Thursday, July 6, 2017 7:45 AM

    Eric M Russell - Thursday, July 6, 2017 7:30...

  • RE: The March of AI

    I do believe that predictive analytics (non domain specific) can be leveraged to improve the optimization of databases and data storage systems, and do some extent that's been around for...

  • RE: Are the posted questions getting worse?

    Eirikur Eiriksson - Thursday, July 6, 2017 6:56 AM

    GilaMonster - Thursday, July 6, 2017 6:37 AM

    July 6, 2017 at 7:30 am

    #1949707

  • RE: A Database Design Test

    Jeff Moden - Wednesday, July 5, 2017 6:51 AM

    For most interviews I've conducted, we never get to design questions because they don't...

  • RE: The 43rd Birthday for SQL

    JavaScript and LINQ are just window dressing for SQL, just like in the construction industry stucco is dressing for (not a replacement for) solid brick.

Viewing 15 posts - 1,366 through 1,380 (of 6,033 total)