Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
oracle10g
- Page 1
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
6 Days Ago
by usmanmalik57
On April 14, 2025, OpenAI released [GPT-4.1](https://openai.com/index/gpt-4-1/) — a model touted as the new state-of-the-art, outperforming GPT-4o on all major benchmarks. As always, I like to evaluate new LLMs on simple tasks like text classification and summarization to see how they compare with current leading models. In this article, I will…
Re: Cannot run exe from asp.net
Programming
Web Development
1 Day Ago
by lennyli
> Why your approach isn’t working > What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: > > Running a .exe on the server > You can technically make the server launch an .exe file like Notepad, but: > > It will run in the background on the server, not visibly on…
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
5 Days Ago
by graceweb
It’s amazing how just a few strategic changes can turn a struggling funnel into a success story. The emphasis on trust signals and emotional storytelling really resonates—those elements create a connection that can be the deciding factor for prospects. Thanks for highlighting those key takeaways! It’s a good reminder that sometimes it’s not …
How To Attract Client To Your Blog?
Digital Media
Digital Marketing
2 Weeks Ago
by blogmanagment
Attracting clients to your blog isn't just about increasing traffic; it's about drawing in the right audience – the ones who appreciate the value you're offering and are ready to take action. So, only writing good content isn't going to be much help. So, let's dive in. Determining Your Audience Before you start writing, ask yourself: …
Re: I'm Tired! How to Increase Social Media Followers
Digital Media
Digital Marketing
2 Weeks Ago
by Shady33
Here are some tips that first came to my mind: * Collaborate with influencers or complementary brands * Use paid ads to promote your best content or lead magnets * Cross-promote across channels (e.g. promote IG on LinkedIn, or vice versa) * Add social links in your email signature, website, and newsletters * Join relevant groups or …
Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
I ran into a bit of a snag in my code, and I'm trying to make heads or tails as to whether this will work. From within my PHP script, can I write to a database using a MySQL connection in the middle of a transaction with a different connection? e.g. // Open Connection 1 and connect to Database A // Start transaction with …
Re: SAP db - how to get the time update statistics was performed on a table?
Programming
Databases
2 Months Ago
by peol
To check when update statistics was last performed on an SAP table, use database-specific queries! For SAP HANA, check M_TABLES.LAST_COMPILED. In SQL Server, use STATS_DATE. For Oracle, check DBA_TAB_STATISTICS.LAST_ANALYZED. In DB2, use SYSCAT.TABLES.STATS_TIME. Stay optimized, stay ahead!
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
> When you price and design a site for an expected human load, and then you get overwhelmed by bots, you can throw more money at it or you can take action against the bots. It's true that the majority of websites on the Internet today spend more bandwidth on bots than they do on human visitors. However, there are both bad bots and good bots, …
Re: how to get back visual basic 6 project again on coding again
Programming
2 Months Ago
by Shajjad_1
To get back to coding a Visual Basic 6 project, locate your project files (e.g., .vbp, .frm, .bas). Ensure you have Visual Basic 6.0 installed on your system, as modern IDEs don't support VB6. Open the project file in VB6 IDE, and you can resume editing and coding.
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
1 Month Ago
by jkon
The loading="lazy" HTML attribute-value pair was introduced in 2019–2020, so I would guess it will be safe to use after 2030–2035, except if you don't care about internet visitors and are targeting an intranet of a company where you control the browsers and their versions. Of course, lazy loading impacts SEO. Modern SEO has more to do …
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
1 Month Ago
by jkon
> However, what is the harm in adding loading="lazy" to an existing web app? 96% of users will experience a performance improvement. The other 4% of users will have no negative consequences, and everything will be exactly the same for them. That 4% will not lose any functionality. That 4% will not experience any UI/UX consequences or …
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
1 Month Ago
by asadkhan12
Your post perfectly highlights the power of behavioral psychology in funnel optimization! The results speak for themselves—small yet strategic psychological tweaks can make a massive impact on conversions. Trust signals, emotional storytelling, and cognitive ease are often overlooked but make all the difference. The way you broke down each …
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
A slightly related question: Is it okay to use PHP's `mysqli::select_db()` function to switch databases in the middle of a transaction? This is what got me into trouble in the first place, when I started a transaction, performed some writes, switched databases, and then wrote to that second database, and then switched back, and performed some …
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Salem
https://www.php.net/manual/en/mysqli.select-db.php I think the key word in all of this is "default". You can probably do what you want, but you have to refer to each DB by it's own handle. Using `select_db` is fine, if you only have one DB and you want to be lazy about referring to it. So you make it the default DB. But as …
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Reverend Jim
As far as I know you can connect to more than one database at a time but you require a separate connection object for each one. Since queries go through the connection object you can't run a query on more than one db at a time. It seems to me that transactions are also connection based so you would have to manually roll back a transaction on A if …
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
I am already using multiple MySQL connections throughout the project, as well as select_db() in some other places. My question specifically revolved around if anyone can explain why select_db() implicitly committed the transaction, and then when done again to return back to the initial database, it did a rollback instead of commit.
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Reverend Jim
In that case I can't suggest anything. I've never had to update multiple databases for any of the systems I set up.
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by toneewa
You're not suppose to switch databases with a connection mid-transaction. It's by design to rollback because it considers it a change to the session context. XA Transactions can be done if you use the InnoDB storage engine. Create separate PDO connections for each database. I wonder what kind of results you get with autocommit, serializable …
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
> If the databases are on the same server and use InnoDB, you can use fully qualified table names, and write to multiple databases on a single connection. That's what I ultimately started doing instead! Thank you so much for a definitive answer to my question.
Oracle - Display Policies
Programming
Databases
13 Years Ago
by maverick420
Oracle query to display all policies existing in the database? Can anyone tell me what will be the "Oracle Query to display all policies existing in the database"?
Oracle, RIMM, Palm Earnings Today; "Outrageous" Predictions For '09
Programming
Databases
16 Years Ago
by Brian.oco
Oracle, Research and Motion and Palm are all releasing earnings statements today, and that should pick up momentum in what has been a fairly dormant technology trading week. The web site Tradingmarkts.com thinks the earnings news means opportunity in two technology-heavy exchange-traded funds (ETFs); Technology Select Sector (SPDR ETF XLK); and …
Re: Oracle Parameters
Programming
Software Development
12 Years Ago
by Momerath
Oracle (like most databases) doesn't support passing in multiple values as a single parameter. So you are stuck doing one of two things: 1) Build the SQL statement dynamically, adding as many parameters as you need. 2) Create a function in Oracle that takes a string and splits it into multiple values and call the function in your SQL statement.
Re: oracle 10g user interface
Programming
Databases
17 Years Ago
by jwenting
Oracle 10 has a web based administration tool. And there's sqlplus as well. Or indeed get an external tool. PL/SQL Developer is very good and reasonably priced. Oracle has its own tool that's free of charge as well, available from OTN. TOAD is overpriced IMO.
Re: Oracle and DBA
Programming
Databases
13 Years Ago
by debasisdas
oracle is an ORDBMS ---in short is a database. and dba is a human being----is one who manages/administers the database.
Re: oracle 10g user interface
Programming
Databases
17 Years Ago
by Nige Ridd
Oracle have J Developer and SQL Developer, both free from their web site. If you develop more PL/SQL I'd go for J Developer as it's more aimed at a project style development, where as SQL Developer is more around working with SQL scripts. Nige
Re: Oracle table design help
Programming
Databases
15 Years Ago
by johnbach
Oracle Advanced Queuing solved the problem.
Re: oracle sessions are full when using with asp.net
Programming
Software Development
17 Years Ago
by Ramy Mahrous
Oracle forum [url]http://www.daniweb.com/forums/forum129.html[/url] ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] They'd help you here's C# only..
Re: Oracle on Ubuntu
Hardware and Software
Linux and Unix
13 Years Ago
by rubberman
Oracle has a java-based GUI for server installation. There are some scripts that need to be run as root, which you will be informed of during the installation process. Read the Oracle installation documentation. It is not simple, but the docs are generally quite thorough.
G'day from down under
Community Center
Say Hello!
17 Years Ago
by Tai-Pan
G'day I found your site by accident and like immediately and so here i am introducing myself [B]Name:[/B] Steve [B]Nickname:[/B] Tai-Pan. [B]Height:[/B] Stops at the top of me head. [B]Weight:[/B] about that or a bit more [B]hair:[/B] Still got it all. [B]Eyes:[/B]Hazel i think. [B]Location:[/B] Geraldton …
G'day from down under
Community Center
Say Hello!
16 Years Ago
by aussie_chick
G'day! My name is Brittany and I'm 21 years old. I live in Victoria, Australia, and am currently doing a Bachelor degree in I.T. Apart from sitting in front of the computer all day, I am also a volunteer firefighter. Anyways that's enough from me for now! See ya all later Brittany
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC