This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resource-ref> | |
<!-- Maps global 'x/y/ConnectionFactory jndi-name to component local java:comp/env/jms/QCF --> | |
<res-ref-name>jms/QCF</res-ref-name> | |
<jndi-name>x/y/ConnectionFactory</jndi-name> | |
</resource-ref> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select tab.name | |
from sysobjects tab | |
inner join syscolumns col | |
on tab.id = col.id | |
where tab.type = 'U' | |
and col.name = 'COLUMN_NAME_TO_SEARCH' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select * | |
from sysobjects tab | |
inner join syscolumns col | |
on tab.id = col.id | |
where tab.type = 'U' | |
and tab.name = 'TABLE_NAME' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resource-ref> | |
<!-- local jndi name: lookup it using java:comp/env/jms/QCF --> | |
<res-ref-name>jms/QCF</res-ref-name> | |
<res-type>javax.jms.Container</res-type> | |
<res-auth>Container</res-auth> | |
</resource-ref> |
NewerOlder