Forum Replies Created

Viewing 15 posts - 1,156 through 1,170 (of 2,647 total)

  • RE: Amount Of Admin Required

    dec_obrien (4/11/2012)


    Don't ask me why but around a couple of hours a month was my gut feeling!

    Any interest in doing this remotely?? (for a small fee of course:-))

    I'm in Chicago,...

  • RE: Amount Of Admin Required

    dec_obrien (4/11/2012)


    SQLKnowItAll (4/11/2012)


    That really depends on SO many things... I would say that database administration "could be" minimal if the application uses SQL Server correctly. You say you are proficient...

  • RE: Gibberrish Characters

    As it many times is 🙂 I'm out of guesses...

  • RE: Gibberrish Characters

    Lynn Pettis (4/11/2012)


    Murphy'sLaw (4/11/2012)


    SQLKnowItAll (4/11/2012)


    Let me get this straight... Instead of meaningless ?'s, your client wants other meaningless characters? Clearly, the conversion is finding some conversion for the characters in...

  • RE: Amount Of Admin Required

    That really depends on SO many things... I would say that database administration "could be" minimal if the application uses SQL Server correctly. You say you are proficient in SQL,...

  • RE: Gibberrish Characters

    Let me get this straight... Instead of meaningless ?'s, your client wants other meaningless characters? Clearly, the conversion is finding some conversion for the characters in columns 7 and 8,...

  • RE: open query in analysis service

    You need to get a book or find some online tutorials my friend. Try posting your question in the Data Mining forum.

  • RE: While PatIndex

    This fixes the patindex, can't start it with a - in the regex. However, your query only displays the last character replaced. Is that what you want?

    Declare @idx_Operator nvarchar(10)

    Declare...

  • RE: open query in analysis service

    Before I say "Yes," You need to explain to me more what you are doing and what this query is trying to accomplish.

  • RE: open query in analysis service

    Well... I'm certainly no expert, but I think you should be doing this in SQL, not in MDX. You use SQL to populate your DW and use SSAS to...

  • RE: While PatIndex

    Hmm... That won't work either. Take out the + from the string and leave in the -, then the result of the patindex returns 0 again. Hmm...

  • RE: While PatIndex

    No problem, but I am certainly not an expert (or even the least bit knowledgeable) on REGEXs. Should look at this a bit more.

  • RE: mirroring and replication?

    SQLCrazyCertified (4/11/2012)


    SQLKnowItAll (4/11/2012)


    In mirroring, the data is not "restored." It is synchronously applied to both the primary and secondary server so that the data is always in sync. Failover happens...

  • RE: While PatIndex

    Actually... start with this:

    Declare @idx_Operator nvarchar(10)

    Declare @Operator nvarchar(10)

    Declare @formula nvarchar(100)

    select @formula = 'BRIDGESTONE+FIRESTONE perelli-MyTire'--formula from goal_formulas where id = 1

    SELECT PATINDEX('%[+-/*|]%', @formula)

    SELECT PATINDEX('%[+%-%/%*%|]%', @formula)

    See?

Viewing 15 posts - 1,156 through 1,170 (of 2,647 total)