Is it possible to disable auto-commit functionality in Teradata SQL Assistant by changing some parameter ?
I have looked through the Teradata SQL Assistant menu, but I don't see such a checkbox as in Teradata Studio.
Thanks in advance for your help.
The closest thing I can think of to achieve this is by setting the transaction mode to ANSI.
Though I suggest you check the documentation because ANSI mode has its quirks.
https://docs.teradata.com/reader/8mHBBLGP88~HK9Auie2QvQ/kdzcOoHlpcaoa_NVApG4Pg
Related
Does Teradata Vantage and Teradata SQL Assistant come with BTEQ? If yes, how do I access it? If no, how do I install it?
Thanks.
I am using Oracle Sql Developer (Version 18.4.0.376).In Sql editor all DBMS_OUTPUT.PUT_LINE are not disabled automatically.
Please refer the below screen shots
Can any one suggest me, How to get ride this issue.
Your database is too old.
10g database and the jdbc driver we use from 2019 won't play nice for getting dbms output.
You're using xe - get a newer one, either 11g or 18c. Both are still free.
Install the latest database like 18 or 19c
Establish the oracle connection with user credentials
Open the sql editor and execute the sample pl/sql procedure
Choose the dbms output window from views menu and set the buffer size as you required.
I use oracle 11g , and sql develper stop working becouse of virus attack :(
THE PROBLEM is that i need to restore my database schema , the data is not important to recover , sql plus work properly , can i recover the schema from sql plus or folders of oracle program ???
pleaaaaaaaaaaaaaaaaaaaaaaaaaaaase help :(
Why would a virus that caused SQL Developer to stop working have an impact on the database schema? You also write that SQLPlus works. Can you connect to the database with SQLPLus? Please provide clearer information on what the problem is.
i want to import data from MYOB through odbc connection
i have successfully created the odbc connection and select queries are working fine.
i want to have a look at MYOB database schema so that i can write queries to retrieve data.
how can i get the schema of the MYOB database?
i made this odbc connection in server explorer, the connection has been succeeded but the server explorer cant show me the list of tables/views in the connection.
kindly help me in this regard.
The following links to the developer resource kit. This kit contains a full shcema description.
http://myobaustralia.custhelp.com/cgi-bin/myobaustralia.cfg/php/enduser/std_adp.php?p_faqid=30548
If the above link expires try this one:
http://myob.com.au/partners/become-a-partner/developers-1258090671897
There are documentations found in the installation folder of the ODBC drivers.
usually found c:\MYOBODBC[xyz]\doc or help.
BTW, you need to have a developer key to enable write access to the MYOB database.
Hope this helps.
I've got a data source in Visual Studio. Is there any way to view the SQL that it generates before it sends it to the database?
I don't just want to see the SelectComand, InsertCommand properties which are part of the asp:SqlDataSource, I want to see the query once the parameters have been filled. Is it possible to do this from Visual Studio?
Don't know the answer, but for such debugging I use SQL profiler.
Edit:
For the Oracle, check TKPROF tool. Documentation is here.
You might also need to
alter session set events '10046 TRACE NAME CONTEXT FOREVER, LEVEL 12';
It doesn't seem to be possible. See the other answer for a possible work around.