Forum Replies Created

Viewing 15 posts - 1,351 through 1,365 (of 8,731 total)

  • RE: Should-I-Type-Star-or-1-With-the-EXISTS-Logical-Operator

    v.malyutin - Monday, April 24, 2017 9:36 AM

    Luis Cazares - Monday, April 24, 2017 7:40 AM

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Are the posted questions getting worse?

    rodjkidd - Monday, April 24, 2017 8:33 AM

    Sean Lange - Monday, April 24, 2017 8:13 AM

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: array or do while loop

    anissw - Monday, April 24, 2017 9:04 AM

    Good morning - This is first time posting to this forum and I need help...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Should-I-Type-Star-or-1-With-the-EXISTS-Logical-Operator

    sequelgarrett - Monday, April 24, 2017 7:31 AM

    You definitely spend more time when you touch two keys "Shift + 7" to...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Are the posted questions getting worse?

    Neil Burton - Monday, April 24, 2017 4:44 AM

    Brandie Tarvin - Monday, April 24, 2017 4:32 AM

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: how to update gender = M or F in a table that has gender values as null

    db8 - Thursday, April 20, 2017 1:06 PM

    Hi

    Any help on how to update gender = M or F in a table that...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Are the posted questions getting worse?

    Ed Wagner - Thursday, April 20, 2017 12:33 PM

    jasona.work - Thursday, April 20, 2017 12:15 PM

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: SQL help - Need to know the first date of previous month and last date of previous month...

    sgmunson - Thursday, April 20, 2017 11:37 AM

     And didn't your Bible also state "God helps those who help themselves" ?

    Err...No.
    https://en.wikipedia.org/wiki/God_helps_those_who_help_themselves

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Date Value calculation issues

    Greg Snidow - Thursday, April 20, 2017 11:22 AM

    I was helping one of my new employees with a script that was being...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: To compare previous rows then update

    faylc - Thursday, April 20, 2017 10:12 AM

    I am using SQL Server 2012 and fairly new to writing queries.  I am stuck...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: seperate column into multiple based on symbol - parsename

    ParseName function has several limitations. To reduce them, here's an option using DelimitedSplit8K which is explained in here: http://www.sqlservercentral.com/articles/Tally+Table/72993/

    CREATE TABLE SampleData(
      CateringStaff varchar(8000)
    );

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: how to create random values for 1 million records or 10,000 records

    Here's a website with a free sample data generator. It has column types to give relevant data created randomly.
    http://www.yandataellan.com/

    When I have no access, I just...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Need help on SQL SERVER WARNING.!

    sreesree.96 - Wednesday, April 19, 2017 2:05 PM

    HI Experts
    I am unable to change the data type VARCHAR to INT . I...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Need help on XML Query, Some tweaking help needed. - Report Sever related

    DesNorton - Wednesday, April 19, 2017 1:11 PM

    Thom A - Wednesday, April 19, 2017 1:01 PM

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Replace string

    Thom A - Wednesday, April 19, 2017 12:32 PM

    I might be being daft, but is this not as simple as:
    REPLACE(REPLACE('Hello all!  ...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2

Viewing 15 posts - 1,351 through 1,365 (of 8,731 total)