When I try open a Adobe XD this message Appear to me adobe XD (error code: 5719) - adobe

When I try to open an Adobe XD this message Appears to me
adobe XD (error code: 5719)

Can you please check below steps
. press WIN+R
. Type 'gpedit.msc' and press enter
. local group policy editor will open
.user configuration -> system (folder) -> click -> Download missing COM components ->Right click -> Edit -> change the 'Not Configured' to 'Disabled' and -> Apply
.After Restart your PC.

Related

Edit SQLite3 database information

In VS2019 I have window opened "SQLite/SQL Server Compact Toolbox". If I right-click on my SQLite3 db there one of menu items says "Database Information". If I run that I get:
-- Script Date: 12/12/2020 12:19 - ErikEJ.SqlCeScripting version 3.5.2.86
-- Database information:
-- Database: C:\Dev\WrongProjectPath\app.db
-- ServerVersion: 3.30.1
-- DatabaseSize: 176 KB
-- Created: 18/11/2020 18:38
-- User Table information:
. . .
I also can see WrongProjectPath in the actual db file with HEX editor.
I copied this db from another project and now would like to change that information to reflect correct project name.
How can I do that?
(answering for #ErikEJ)
Remove the connection from the Toolbox, and point to the correct path when adding a new connection

Backup BizTalk Server (BizTalkMgmtDb)

Below is the configuration I have for Backup BizTalk Server (BizTalkMgmtDb) job
Set Compression Option :exec [dbo].[sp_SetBackupCompression] #bCompression = 1
BackupFull : exec [dbo].[sp_BackupAllFull_Schedule] 'd' ,'BTS','D:\BTS_SQL_Backup','0','15'
MarkAndBackUpLog : exec [dbo].[sp_MarkAll] 'BTS' , 'D:\BTS_MarkAndBackupLog'
Clear Backup History : exec [dbo].[sp_DeleteBackupHistory] #DaysToKeep=14, #UseLocalTime =1
Below is the error I got
Error: cannot Open backup device 'D:\BTS_MarkAndBackupLog'
Please advise.
User has admin rights , attached screenshot for reference .
From the Technet thread
I was able to fix the issue by providing network path instead of actual local drive location . ( Folder Properties --> Sharing --> Add user to the network -- > Network Path ).

R Markdown RPubs error

I followed the steps outlined in https://blog.safaribooksonline.com/2014/01/29/rstudio-r-markdown-r-scripts-rpubs/
but encounter error as in Can't publish markdown to Rpub on Windows
Step 1:
install.packages('knitr', dependencies = TRUE)
Step 2:
library('knitr')
Step 3:
File-> New File-> R Markdown.
Key in Title, Author, and choose HTML radio button.
Some template appear..
Step 4:
Click knit HTML button
Step 5:
I create a free account by visiting www.rpubs.com.
Step 5:
Click Publish.
Once you click the publish button you will be prompted to login with your RPubs account. --> I do not have this...
But I have error:
"Error in function (type, msg, asError = TRUE) : SSL certificate problem: unable to get local issuer certificate Calls: rpubsUpload ... -> .postForm -> .Call -> -> fun Execution halted"
Boniface Osonwanne's answer at https://support.rstudio.com/hc/communities/public/questions/202496207-Difficulties-in-publishing-R-presentation-in-RPubs worked for me with a little tweaking.
To summarize, he said open up the following directory:
C:\Program Files\R\R-3.1.2\library\base\R
Then add the following line using Notepad on line 25.
options(rpubs.upload.method = "internal")
Notepad made a mess of the file for me, but Notepad++ worked fine.
My problem came in when I tried to save. Even though I had just rebooted and didn't have R or Rstudio open, I couldn't save. I copied the file to my desktop made the edit there and copied the file back with administrator permissions.
When I started R and knitted my Rmd, it worked like a charm.

Getting error while connecting to oracle [duplicate]

I Google[d] for this error ORA-12560: TNS:protocol adaptor error but not able to find the actual reason and how to solve this error ?
Can anyone tell me a perfect solution to solve login problem.
Go to the windows machine that hosts the Oracle database server
Go to Start -> Run -> Services.msc in Windows.
Locate OracleService < SID > (here OracleServiceORCL) and click on Start to start the oracle database service (if not already running)
Once it is up and running, from the command prompt run the following:
tnsping < tnsalias >
(tnsalias entry you can find it in tnsnames.ora file)
In my case I didn't have an OracleService (OracleServiceORCL) in Windows Services.msc as described in Bharathi's answer.
I executed this command:
C:\> ORADIM -NEW -SID ORCL
and then the OracleService called OracleServiceORCL just showed up and got started in Services.msc. Really nice.
Source: https://forums.oracle.com/forums/message.jspa?messageID=4044655#4044655
Seems like database is not up. It might be due to restarting machine and the instance is not set to autostart and it so not started munually after starting from services Screen.
Just goto Command prompt
Set Oracle SID
C:>set oracle_sid=ORCL
Now run Net start command.
C:>net start oracleserviceORCL
from command console, if you get this error you can avoid it by typing
c:\> sqlplus /nolog
then you can connect
SQL> conn user/pass #host:port/service
Add to the enviroment vars the following varibale and value to identify the place of the tnsnames.ora file:
TNS_ADMIN
C:\oracle\product\10.2.0\client_1\network\admin
In my case (for OracleExpress) the service was running, but I got this issue when trying to access the database via sqlplus without connection identifier:
sqlplus sys/mypassword as sysdba
To make it work I needed to add the connection identifier (XE for Oracle Express), so following command worked ok:
sqlplus sys/mypassword#XE as sysdba
If you still get ORA-12560, make sure you can ping the XE service. Use:
tnsping XE
And you should get OK message along with full connection string (tnsping command is located in oracle's installation dir: [oracle express installation dir]\app\oracle\product\11.2.0\server\bin). If you can not ping make sure your tnsnames.ora file is reachable for sqlplus. You might need to set TNS_ADMIN environment variable pointing to your ADMIN directory, where the file is located, for example:
TNS_ADMIN=[oracle express installation dir]\app\oracle\product\11.2.0\server\network\ADMIN
After searching alot got a simple way to solve it.
Just follow the steps.
Check status of your listener.
open command prompt and type lsnrctl status
You will get no listener.
Now open listener.ora file which is present in following directory: C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN
Open that file and change the host parameter with you computer name
You can get your computer name by right click on My Computer and check you computer name, and replace host parameter with your computer name as follows:
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
(ADDRESS = (PROTOCOL = TCP)(HOST = Electron-PC)(PORT = 1521)
)
)
)
So here you can observe HOST = Electron-PC, which is my computer name.
Save the listener.ora file and again return to cammand propt
3.Type the following in command prompt lsnrctl start
This will start the OracleTNSListner.
you can check it in the service by opening services tab of Task Manager. if not started automatically you can start it.
Just this much and you are ready to work again on oracle.
Best of Luck.
Quite often this means that the listener hasn't started. Check the Services panel.
On Windows (as you are) another common cause is that the ORACLE_SID is not defined in the registry. Either edit the registry or set the ORACLE_SID in a CMD box. (Because you want to run sqlplusw.exe I suggest you edit the registry.)
I have solved the problem the easy way. My oracle was running just fine in the past. After I installed MS SQL Server was when I noticed this problem. I just uninstalled MS SQL Server on my machine then the problem was gone. Make sure you restart your computer after that. Now I can connect to Oracle database through SQLPlus again. My guess is that there's some conflict between the two. Hope this helps.
Another possible solution that just worked for me...considering I was using my local login as the dba permissions.
Follow the steps to get to Services. Right click on the instance and go to 'Log On'? (might not be the name but it's one of the tabs containing permissions). Change the settings to use LOCAL.
If none the above work, then try this :
Modify the LISTENER.ora (mine is found in : oracle\product\11.2.0\dbhome_1\NETWORK\ADMIN\listener.ora) ==> add a custom listener that points to your database(SID), example my SID is XZ0301, so :
## Base XZ03001
SID_LIST_LISTENER_XZ03001=(SID_LIST=(SID_DESC=(ORACLE_HOME =
E:\oracle\product\11.2.0\dbhome_1)(SID_NAME= XZ03001)))
LISTENER_XZ03001=(DESCRIPTION_LIST=(ADDRESS=(PROTOCOL =
TCP)(HOST=MyComputerName)(PORT= 1521)))
DIAG_ADR_ENABLED_LISTENER_XZ03001=ON
ADR_BASE_LISTENER_XZ03001=E:\oracle
Restart your machine
For Windows 7, use the following to modify the LISTENER.ora:
- Go to Start > All Programs > Accessories
- Right click Notepad and then click Run as Administrator .
- File>open and navigate to the tnsnames.ora file.
- Make the changes then it should allow you to save
It really has worked on my machine. But instead of OracleServiceORCL I found OracleServiceXE.
Flow the flowing steps :
Edit your listener.ora and tnsnames.ora file in
$Oracle_home\product\11.2.0\client_1\NETWORK\ADMIN location
a. add listener.ora file
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
)
)
ADR_BASE_LISTENER = C: [here c is oralce home directory]
b. add in tnsnames.ora file
SCHEMADEV =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = dabase_ip)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = SCHEMADEV)
)
)
Open command prompt and type
sqlplus username/passowrd#oracle_connection_alias
Example : username : your_database_username
password : Your_database_password
oracle_connection_alias : SCHEMADEV for above example.
Just to add up, follow the screenshot and choose local account to start if not selected. Then start the service.
You need to tell SQLPlus which database you want to log on to. Host String needs to be either a connection string or an alias configured in your TNSNames.ora file.
ORA-12560: TNS:erro de adaptador de protocolo
set Environment Variables: ORACLE_BASE, ORACLE_HOME, ORACLE_SID
make sure your user is part of ORACLE_GROUP_NAME (Windows)
make sure the file ORACLE_HOME/network/admin/sqlnet.ora is:
SQLNET.AUTHENTICATION_SERVICES = (NTS)
(Windows) Be carefull when you add a new Oracle client: adding a new path to the PATH env. variable can mess things up. The first entry in this variable makes a difference: certify that the sqlplus executable in the ORACLE_HOME (ORACLE_HOME/bin) comes first in the PATH env. variable.
I try 2 option:
You change service OracleService in Service Tab -> Running
Login with cmd command: sqlplus user_name/pass_word#orcl12C
Note: orcle12c -> name of OracleService name run in you laptop
Below fixes can be applied to resolve TNS 12560 error
Get Latest patch for SQL*NET client software
Set $ORACLE_HOME and $PATH variable (should be accessible for System user)
Check permissions on PC client
Check $TNS_ADMIN variable
Check if network has firewall or antivirus issues
Check if windows services Run >> Services.msc has OracleXE or OracleORCL service running
Check below link in case of net tracing error:
http://dba-oracle.com/t_sql_net_tracing.htm
In my case, (ORA-12560: TNS protocol adapter error)Issue cause of database connection issue like database, user name and password.
Once you got the issue. Initially you have to check connection details, after check the oracle service and further more.
I missed some connection details, So only i got TNS protocol adapter error,
I will changed the connection details, It would be working fine.

Not able to open gsp files in STS

When i try to open .gsp files in sts it gives me error "could not open the editor could not be intitialized". and "Unable to create editor ID com.springsource.sts.grails.editor.gsp.editor: Editor could not be initialized."how to resolve this

Resources