Forum Replies Created

Viewing 15 posts - 76 through 90 (of 2,452 total)

  • RE: Are the posted questions getting worse?

    Lynn Pettis - Friday, November 17, 2017 8:52 AM

    Was this thread, RE: Shared stored procedure with very complicated input, removed or hidden...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Query to give sum of items with condition from multiple tables

    rosarozina - Tuesday, November 14, 2017 4:24 PM

    Thank you for the tip.
    I will post it using the guide

    look forward to it....

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Query to give sum of items with condition from multiple tables

    https://spaghettidba.com/2015/04/24/how-to-post-a-t-sql-question-on-a-public-forum/

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Fastest way to look for a word from a string matching a list of words in a lookup table

    maybe a set up script that creates the tables and inserts some simple sample data and also the expected results would help......you have had many views and only one reply.

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: splitting column into two

    alhakimi - Sunday, September 3, 2017 1:26 PM

    hmm , yes i found out that some names are without / , what should...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: splitting column into two

    alhakimi - Sunday, September 3, 2017 1:01 PM

    Thank you , whenever i used the -1 , i get error message

     

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: splitting column into two

    maybe...

    DECLARE @name VARCHAR(50)= 'baggins/bilbo';
    SELECT LEFT(@Name, CHARINDEX('/', @Name)-1) AS Lastname,
       SUBSTRING(@Name, CHARINDEX('/', @Name)+1, LEN(@Name)-CHARINDEX('/', @Name)) AS Firstname;

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Need to remove punctuation characters

    maybe....

    DECLARE @s VARCHAR(100)= 'rh@ythm@#%';
    SELECT SUBSTRING(@s,1, LEN(@s)-(PATINDEX('%[A-Za-z]%', REVERSE(@s))-1))

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Lookup values similar to VLookUp in Excel

    you have posted in sql 2008 forum...please confirm this is the version you are using.

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: How to do incremental loading without date filters

    upendar.dilytics - Tuesday, August 22, 2017 6:39 AM

    We need to load the data which is inserted or updated in last four days...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Need to remove punctuation characters

    rhythmk - Tuesday, August 15, 2017 11:45 AM

    Eirikur Eiriksson - Saturday, August 12, 2017 5:26 AM

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Subroutines in TSQL

    dmeissner - Monday, August 14, 2017 12:19 PM

     I ultimately created a single procedure on one db that could be referenced from another,...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Randomization in select query in SQL server

    not sure about your question ...sorry.
    try re posting using these guidelines
    https://spaghettidba.com/2015/04/24/how-to-post-a-t-sql-question-on-a-public-forum/

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Combinations question with a twist

    schleep - Friday, August 11, 2017 8:45 AM

    can you give some sample set up data that explains this and your expected...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Combinations question with a twist

    my users have created various groupings of cities within provinces/states. The rule is that all cities must be covered by some combination of these groups

    can you give...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

Viewing 15 posts - 76 through 90 (of 2,452 total)