About 208,000 results
Open links in new tab
  1. 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 …

  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. 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.

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

    Is it possible to combine LIKE and IN in a SQL Server-Query? So, that this query

  5. 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 10 months ago Modified 9 months ago Viewed 1k …

  6. 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)...

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

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

  8. How to Pass list of words into SQL 'LIKE' operator

    Jun 24, 2022 · 0 I am trying to pass a list of words into SQL Like operator. The query is to return column called Customer Issue where Customer Issue matches any word in the above list.

  9. 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 …

  10. sql - IN vs ANY operator in PostgreSQL - Stack Overflow

    Jan 6, 2016 · What is the difference between IN and ANY operator in PostgreSQL? The working mechanism of both seems to be the same. Can anyone explain this with an example?