Status : Failure - Test failed: Listener refused the connection with the following error: ORA-12519, TNS:no appropriate service handler found - database

I have got the problem with my Oracle Database Server that give me an error message Status : Failure - Test failed: Listener refused the connection with the following error: ORA-12519, TNS:no appropriate service handler found.
I am a newbie at using Oracle Database Server. I just found the way how to fix that problem using these code;
SELECT * FROM v$resource_limit WHERE resource_name IN ('processes','sessions');
ALTER system SET processes=300 scope=spfile;
When I tried it, I got this Query Result
But when I tried to increase the number of processes/sessions, it did not help me so much.
Does anyone here could help me to fix this problem.
Thank you in advance

You must restart the Oracle RDBMS after ALTER system SET processes=300 scope=spfile;

Related

net.snowflake.client.jdbc.internal.apache.http.impl.execchain.RetryExec: I/O exception while executing DDL

I am trying to executing a DDL query using snowflake jdbc driver:
Create table table_destination
as select * from table_source
I am seeing these errors in logs. Although, table in snowflake is created successfully.
error:
net.snowflake.client.jdbc.internal.apache.http.impl.execchain.RetryExec: I/O exception (net.snowflake.client.jdbc.internal.apache.http.NoHttpResponseException) caught when processing request to {s}->https://xyz.snowflakecomputing.com:443: The target server failed to respond
It seems like table creation is taking too long and snowflake is retrying to get response. Can someone please explain what's happening here?
I found this post.( https://github.com/DigitalPebble/storm-crawler/issues/405 )
Try ensure automatic retries is enabled.
E.g.
builder = HttpClients.custom().setUserAgent(userAgent)
.setConnectionManager(CONNECTION_MANAGER)
.setConnectionManagerShared(true).disableRedirectHandling();
//.disableAutomaticRetries();

Could not locate bookmark due to data movement

We got this Error in one of our SQL-Jobs tonight:
Error: Executing the query "exec P_ALL" failed with the following error: "Could not locate bookmark due to data movement.". Possible
failure reasons: Problems with the query, "ResultSet" property not set
correctly, parameters not set correctly, or connection not established
correctly.
I can't find any explanation on the web. The MS SQL Server 11.0.7462.6 is running on VMware. It is noticeable that the error came exactly at 03:00:13 am.
I know it is not easy to say, but do you think it is possible, that the VM moved the data and because of that, the Job failed? Do you know other reasons for this error?
The event error log has no further Information.
Thank you for your time!

Getting errror as the server threw exception in QTP

I am getting error the server threw exception in QTP
Function file:C:\GPONSanityAutomation\FunctionalLibraries\DatabaseConnection.vbs
Line (42): “con.open “Provider=OraOLEDB.Oracle;Data Source=”& strDBDesc &”;User ID=”& strUSERID &”;Password=”& strPassword &”;””
I am getting this error during database connection
Could you please anyone help me resolve this error.
You need to install oracle client in your system for database connectivity. If already installed try to create a database checkpoint using the installed driver and check whether you are able to create the checkpoint.

New connection in SQL Developer 01017

Status : Failure -Test failed: ORA-01017: invalid username/password; logon denied
This status above I see when I'm trying to create new Connection in SQL Developer 11g EE.
I tried propably all possibilites with lower/uppercases and numbers.
Here is printscreen: http://i.imgur.com/Ztc3OAS.jpg
I was searching for that, but coulnd find solution for this kind of problem.
Thank you in advance and sorry if this problem is trivial, but I am beginner in this:(

Create failed for Job 'SSIS Package Exec'

I created an SSIS package entitled "DimEntity.dtsx"
I followed the instructions from this link to run this SSIS package using a scheduled Job.
http://blog.sqlauthority.com/2011/05/23/sql-server-running-ssis-package-in-scheduled-job/
After following the process of running-ssis-package-in-scheduled-job, I got this error after clicking OK from the image below.
Create failed for Job 'SSIS Package Exec'. (Microsoft.SqlServer.Smo)
ADDITIONAL INFORMATION:
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
Cannot insert the value NULL into column 'owner_sid', table 'msdb.dbo.sysjobs'; column does not allow nulls. INSERT fails.
The statement has been terminated. (Microsoft SQL Server, Error: 515)
Could someone help me resolve this?
Thank you!
Select General on the left tab and enter a value for owner.
Try setting the owner manually:
update msdb.dbo.sysjobs_view
set owner_sid=suser_sid('<username or groupname here>',0)
where name = 'jobname'
The job owner was probably set to [sa] by hand whereas it needs to be sa (or it is when set by the "Browse" functionality.
If you are using a vpn to access your server but you are not part of the domain, it may put your local machine's domain in and then fail. This is what happened to me. I browsed for an owner and selected one from the server's domain and this fixed it.

Resources