Blog
Documentation
Knowledge Base
Send Feedback
Contact Us
toggle menu
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Activity
Best Of...
Sign In
·
Register
×
Home
›
General Discussion
Discussion
Vertica JDBC Connection process/session id
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
Vertica JDBC Connection process/session id
Ram_Prasad
January 2014
in
General Discussion
@SPID
to get the session id of that connection, then i kill that process id when user clicks on cancel. Same way how to do for VERTICA?
0
Comments
Prasanta_Pal
- Select Field -
Employee
January 2014
To close a session
select * from sessions; //get the session id and then close the session
select close_session('localhost.localdoma-13354:0xbeab');
select * from sessions;
dbadmin=> select session_id, statement_id, current_statement from sessions;
0
Ram_Prasad
January 2014
I'm connecting through JDBC Connection so from that connection i need that particular connections session id to stop the process.
0
Leave a Comment
Bold
Italic
Strikethrough
Ordered list
Unordered list
Format
Spoiler
Code
Quote
Heading 2
Heading 1
Emoji
Url
Image
Align left
Align center
Align right
Toggle HTML view
Toggle full page
Toggle lights
Drop image/file
Home
•
General Discussion
Comment As ...
Comments
select * from sessions; //get the session id and then close the session
select close_session('localhost.localdoma-13354:0xbeab');
select * from sessions;
dbadmin=> select session_id, statement_id, current_statement from sessions;