About 70,000 results
Open links in new tab
  1. How can I use like in a list for SQL? - Stack Overflow

    Mar 7, 2014 · The list of matches is going to be hardcoded in (and probably added to a little bit over time). I've never heard of PATINDEX.

  2. SQL Server Agent Job Notify multiple operators on failure

    The simplest method i use to notify multiple "OPERATORS" on "JOB FAILURE" is to: In SSMS>SQL Server Agent>Operators create a new OPERATOR or EDIT existing and add …

  3. Define variable to use with IN operator (T-SQL) - Stack Overflow

    I have a Transact-SQL query that uses the IN operator. Something like this: select * from myTable where myColumn in (1,2,3,4) Is there a way to define a variable to hold the entire list "(1,2,3,4)...

  4. Combining "LIKE" and "IN" for SQL Server - Stack Overflow

    The problem with this solution is if the text column contains text that would find more than one match. For example if your text was 'Hello World' it would find two matches and create an …

  5. How can I use the LIKE operator on a list of strings to compare?

    Jan 19, 2012 · I have a query I need to run on almost 2000 strings where it would be very helpful to be able to do a list like you can with the "IN" operator but using the LIKE comparison …

  6. Show list of SQL Server Agent operators in a query

    Feb 15, 2018 · How can I see (with a query) the list of operators of SQL Server Agent with their e-mail address? I am asking it because i want to put more than one e-mail address and I used …

  7. Get SQL Server Agent jobs configured with Email Notification

    Sep 25, 2017 · 2 I have lot of jobs in my SQL server agent. I want to know which all the jobs are configured with email notification. I can do individually by editing and checking for the job …

  8. How to retrieve the output of a SQL query executed with ...

    Mar 9, 2025 · How to retrieve the output of a SQL query executed with SQLExecuteQueryOperator in Airflow Asked 7 months ago Modified 6 months ago Viewed …

  9. How can I introduce multiple conditions in LIKE operator?

    Sep 7, 2009 · Oracle 10g has functions that allow the use of POSIX-compliant regular expressions in SQL: REGEXP_LIKE REGEXP_REPLACE REGEXP_INSTR …

  10. Should I use != or <> for not equal in T-SQL? - Stack Overflow

    Yes; Microsoft themselves recommend using <> over != specifically for ANSI compliance, e.g. in Microsoft Press training kit for 70-461 exam, "Querying Microsoft SQL Server", they say "As …