Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View anishkarki's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report anishkarki

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
anishkarki/README.md

Hi there πŸ‘‹

anishkarki/anishkarki is a ✨ special ✨ repository because its me.

  • πŸ”­ I’m currently working on ...
  • 🌱 I’m currently learning ...
  • πŸ‘― I’m looking to collaborate on ...
  • πŸ€” I’m looking for help with ...
  • πŸ’¬ Ask me about ...
  • πŸ“« How to reach me: ...
  • πŸ˜„ Pronouns: ...
  • ⚑ Fun fact: ...

Pinned Loading

  1. Performance_tuning.txt Performance_tuning.txt
    1
    Performance boosting for the hiveQL:
    2
    
                  
    3
    In Case of the HIVE:
    4
    HiveQL, in traditional approch, runs on top of apache hadoop, yarn, (mapReduce/tez or spark engine) and hive server.
    5
    COMPONET OF HIVE SERVICE:
  2. Postgresql DBA. All postgres queries... Postgresql DBA. All postgres queries for DBA
    1
    -- Create read-only roal in postgres
    2
    create role test inherit;
    3
    GRANT CONNECT ON DATABASE test_db TO test;
    4
    GRANT USAGE ON SCHEMA public TO test;
    5
    GRANT SELECT ON ALL TABLES IN SCHEMA public TO test;