The quickest way would be to download the free version of SQL Server and the Admin tools from Microsoft.com/SQL and start playing with the system to figure out where everything is. There are also dozens of blogs and forums where you can read up. I’d be happy to provide some links if you’d like.
Good luck everyone. If you have questions email me at sbrooks at techtarget.com
I don’t know of a setting for that. It could be a compatibility issue.
No i do not think you can. There is no easy way of doing this that is. You can move all of your data out of the tablespace and then drop the tablespace, recreate the table space and then move all of our data back into that tablespace. Oracle does not give an easy way [...]
There really is not enough information here to make a good diagnosis. I would suggest that you insert a “set -x” command on the second line of your Unix shell script. This will show you what is being executed as far as Unix is concerned. My suspicion – only a suspicion! – is that there [...]
This is really a question of requirements and possibilities. I am presuming that you have looked over the High Availability and Replication documentation and you are looking for something more flexible. In Streams, there are no explicit constraints for table design or structure. Yes, you can have different PKs in tables of two databases. That [...]
Hello Inprise. You asked <a href=”http://itknowledgeexchange.techtarget.com/itanswers/attribute-to-test-not-null-and-can-take-specific-value-instead/”>this similar question</a> yesterday. Could you please tell us if the answer provided was not useful, or your question was misunderstood ? It would be also useful to know why you can’t use the IF – THEN -ENDIF approach. Examples always help. Could you provide some example, or tell us [...]
I’m not sure if I understand correctly your question. If you want to assign some specific value to a varibale or parameter in PL/SQL when it is null, you could use the NVL function, this way: <pre>l_variable := nvl(l_variable,’-');</pre> If this is not what you meant, please provide more information and examples if possible.
You might want to provide more information about your question. - Is this attribute a database table column ? Do you want to make this check when rows are inserted ? - Is this a local variable, or a procedure parameter ? (you tagged your question ‘PL/SQL Variables’) A simlpe answer would be: <pre>if <variable> [...]
There is more than one error: - Remove the semicolon and add the IS (or AS) and BEGIN keywords after the signature definition of the procedure. - Add the END keyword corresponding to the end of the procedure. This would be the modified script: <pre>CREATE OR REPLACE package body PKG_IMAGEM1 as PROCEDURE IMGINSERT1(P_Region IN VARCHAR2, [...]
There is probably a message in the JReport log files as to why. My guess would be the URL to the DBMS, the user or the password was changed when you upgraded the DBMS version. Also, be sure JReport is using the latest ojdbc14.jar JDBC driver that supports Oracle 10g. You can always email support@jinfonet.com.
If the corruption is in the index, then rebuilding the index won’t help, because it will rebuild from itself with the corrupt information. If that is the case you will need to drop the index and create it again. If re-creating the index doesn’t solve the problem, then the corruption may be in the table. [...]
You will need to update. Current Oracle version is 11g, and many things have changed since version 8. Have a look at the <a href=”http://www.oracle.com/pls/db111/homepage”>Oracle Database 11g Documentation Library</a>
While it would require lot more inputs to correctly identify your bottleneck, here are some suggestions: 1. Apart from sar try iostat to identify disk IO bottlenecks. 2. Use prstat to list all the processes running and how much resource they are consuming. Check the Mem and Paging utilization particularly. 3. Use vmstat and swap [...]
Could you please provide some example data and explain how you are dealing with the data in those colums now ? Also, the Oracle version could be useful.
If you have checked the characterset, then this could happen if you are using different versions of the import/export utilities. Try exporting the data with the EXPORT utility from the destination machine.
That error usually arises when you try to access a non-existent element on a collection. To debug this, you could place all the code inside the for loop in an if-then-else block to make sure you are referencing only existent elements. Something like this: <pre>for i in g_change_tab.first..g_change_tab.last loop if <b>g_change_tab.exists(i)</b> then select count(*) into [...]
Are you getting some error message when trying to install JInitiator ?
You can’t call database triggers directly. You should use a stored procedure instead. You can call stored procedures the same way you do for Forms local procedures. Please provide more information if you need further help.
Are you going to migrate your database, or your Developer applications (or both) ? There is no version 6i of Oracle database, so I guess you are talking about Forms. If you are going to migrate the database also, please specify your current database version.





