✕ Clear all filters
48 articles

📰 Dev.to · Query Filter

48 articles · Updated every 3 hours · View all reads

All Articles 70,950Blog Posts 101,108Tech Tutorials 17,262Research Papers 14,971News 12,814 ⚡ AI Lessons
docker6
Dev.to · Query Filter 2mo ago
docker6
This is a classic "Enterprise Migration Trap." You are caught between a Legacy Runtime (Java 8) and a...
bridge99
Dev.to · Query Filter 2mo ago
bridge99
private String extractValue(Object value) { if (value == null) return "null"; // 1. Unmask...
bridge66
Dev.to · Query Filter 2mo ago
bridge66
Understanding the Dual-Mode Configuration Lifecycle in DDSBridge In the current...
bridge41
Dev.to · Query Filter 2mo ago
bridge41
package comet.agent; import net.bytebuddy.agent.builder.AgentBuilder; import...
bridge28
Dev.to · Query Filter 2mo ago
bridge28
// Inside your premain/agentmain logic: AgentBuilder agentBuilder = new AgentBuilder.Default() ...
gradle7
Dev.to · Query Filter 2mo ago
gradle7
def cacheRules = [ [ test: { it == "nam_riskbreach_reporter" }, value: "egtpsga56" ], [...
store3
Dev.to · Query Filter 3mo ago
store3
task runQuantum(type: JavaExec) { dependsOn prepareLibDir, classes systemProperty...
store2
Dev.to · Query Filter 3mo ago
store2
println "Checking folder: ${folder?.absolutePath}" println "File count: ${folder.listFiles()?.size()...
dupl8
Dev.to · Query Filter 3mo ago
dupl8
// 1. Define where the "clean" JAR will live def strippedLibDir =...
git
Dev.to · Query Filter 5mo ago
git
git commit --amend --reset-author --no-edit Here’s exactly what happens with that...
sql9
Dev.to · Query Filter 5mo ago
sql9
The error ORA-14451: unsupported feature with temporary table occurs because you're trying to create...
sql2
Dev.to · Query Filter 5mo ago
sql2
-- utils.sql -- Prevent SQL*Plus prompting for missing argument COLUMN arg1 NEW_VALUE arg1 SELECT...
map
Dev.to · Query Filter 5mo ago
map
LOAD DATA INFILE 'syb_dump.dat' INTO TABLE YOUR_ORACLE_TABLE REPLACE TRAILING NULLCOLS FIELDS...
cursor5
Dev.to · Query Filter 6mo ago
cursor5
set nocount on -- ALL variable declarations FIRST declare @table_name varchar(255) declare @cnt ...
dev14
Dev.to · Query Filter 6mo ago
dev14
/* ------------------------------------------------------------- ONE BLOCK → ALL tables with...
step6
Dev.to · Query Filter 6mo ago
step6
-- Run this once — it generates ready-to-run queries SELECT 'SELECT ''' || table_name || ''' AS...
step4
Dev.to · Query Filter 6mo ago
step4
CREATE OR REPLACE FUNCTION get_table_activity_report RETURN SYS_REFCURSOR AS l_cursor...
step3
Dev.to · Query Filter 6mo ago
step3
-- 1. Declare the bind variable where the results will be stored. -- The name of the cursor variable...
step2
Dev.to · Query Filter 6mo ago
step2
-- Test just ONE table to see if anything works -- Replace 'YOUR_TABLE' with an actual table name...
compare7
Dev.to · Query Filter 6mo ago
compare7
/* ------------------------------------------------------------- Schema comparison for two real...