Giter Site home page Giter Site logo

I am facing below warning once the execution is stopped for sp_whoisactive.. Should I be worried for the data due to this? about sp_whoisactive HOT 1 CLOSED

sumabris avatar sumabris commented on August 24, 2024
I am facing below warning once the execution is stopped for sp_whoisactive.. Should I be worried for the data due to this?

from sp_whoisactive.

Comments (1)

M-Frenzel avatar M-Frenzel commented on August 24, 2024

Hi @sumabris

those warnings provide you with hints that you should be aware of in case the data is wrong or the query takes a long time.

Warning: The join order has been enforced because a local join hint is used. is printed because some JOINs are hinted, for example INNER LOOP JOIN instead of INNER JOIN. Normally you do not need those hints, sometimes they are in fact necessary to provide a fast or stable execution.

Warning: Null value is eliminated by an aggregate or other SET operation is printed usually because of the usage of aggregation functions such as SUM or AVGon columns that contain NULL values. NULL are not processed.

If you want to get rid of the last warning, you can add SET ANSI_WARNINGS OFF before executing the procedure.

I see no reason to be worried.

from sp_whoisactive.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.