0
votes
0answers
24 views

Information not being put into database

Here's what I have at the top of the page, gathering the information from the tables in the database: include_once '../assets/database.php'; $a = $_GET['a']; $username = $_SESSION['username']; ...
0
votes
1answer
20 views

Importing data from access into an open excel spreadsheet? (Excel VBA)

I am trying to make an application that has the feature to import data from access into excel. I am starting with a table named ""1301 Array"" before I give user control over which table. The problem ...
1
vote
0answers
10 views

Cycle in ER diagram: Bad design? BCNF?

I want to model linguistic syntax trees in my database. In my design, a syntax tree consists of inner nodes and terminal nodes; both types of nodes are weak entity types that are identified by the ...
0
votes
1answer
9 views

Record has multiple statuses that gets rechecked. Only want records that meet a certain criteria

I have a table like below Account number | Last Name | Status | date 111 doe acknowledged 04-11-2013 111 doe acknowledged 05-01-2013 ...
-2
votes
0answers
47 views

Complex select query - sql server [closed]

I'm a novice of SQL, my question relates to the following tables: Comments id_comment|comment_product|comment_date|product_id|user_id 1 |Lorem 1 |2013/06/12 |1 |1 2 ...
0
votes
0answers
8 views

How to force Teradata parcer to understund the join

I would like your help for the next issue.It is a real problem,but i will present you like an example. I have a view which is composed as below viewa = sel * from ( calendar_dim inner join ( sel * ...
0
votes
1answer
26 views

URL Looper Issue, Want to add value in to input value tag

I found this script on google and I want to make some changes in it. This is script search and finding all URL links from provided website - <?php function urlLooper($url){ ...
0
votes
1answer
11 views

Is there any way to reset mysql IDLE/Sleep connections?

I have a problem, my app have to open a lot of connections with MySQL and write data into it, but for after some time I'm getting more and more connections that are in idle/sleep state, and my app's ...
1
vote
0answers
11 views

How to set permutation constraints on my database: wordpress members on a team

I am making a database that manages submissions for a class. I have the following schema assignment_url (assignmentURL, assignmentNUM) team_assignment (assignmentNUM, id) team_members ...
-7
votes
0answers
44 views

MySql and SQL Server [closed]

I need to use the following code in MySql: SELECT CONVERT(CHAR(19), DATE()) AS Example; SELECT CONVERT(CHAR(10), DATE(),110) AS Example; SELECT CONVERT(CHAR(11), DATE(),106) AS Example; SELECT ...
-1
votes
2answers
54 views

using javascript in java code? [closed]

function searchUsers(){ document.getElementById("searchResults").style.visibility="visible"; <% DBConnector db = new DBConnector(); db.getConnection(); ResultSet rs ...
1
vote
1answer
34 views

Undefined Index with PHP code

( ! ) SCREAM: Error suppression ignored for ( ! ) Notice: Undefined index: q_sold in C:\wamp\www\aaa\mup.php on line 93 Call Stack # Time Memory Function Location 1 ...
0
votes
1answer
24 views

Deleting mysql db syntax?

Im trying to tidy up my local dbs which are left over duplicates and dev dbs from past projects. To do it im viewing in Sequel pro, then im deleting them using the command DROP DATABASE ...
-2
votes
1answer
20 views

Show Month with the Highest Quantity Sold

I need to show the month with the highest number of quantity sold. I don't know how to do that. Please help thank you. I have: id, prod_name, price, q_sold, month the q_sold must sum up with ...
0
votes
0answers
8 views

TextWrangler: This file doesn’t appear to contain a valid ‘shebang’ line

It is my first time working with TextWrangler. I am using it to open a .sql file. But when I try to run the file I get the following error: This file doesn’t appear to contain a valid ‘shebang’ line ...
0
votes
2answers
17 views

Rails Performing IN Operation

Might get grief, but here it comes. I am trying to execute an IN operation on one of my clauses in Rails. The call is: @ret = BBOrder.find(:all, :conditions => ["symbol LIKE ? AND ...
-1
votes
1answer
64 views

Data is not being saved in database no run time errors

I'm developing windows forms application in C# with sql server database. I can insert and retrieve data but only in the run time. If I run it again it does not show previously inserted data. ...
0
votes
2answers
36 views

How should I insert & retrieve lists of data to & from an SQL database?

I have 3 lists, each one contains all the data of one column in the SQL table. All of the list are the same length. This is how I need to insert the data into the table: ...
0
votes
1answer
35 views

Postgres:Get the latest record from a table

I have two tables which I use to fetch data and from this data I want to identify the records which are lastest related to a particular value. My first table is : g_190048( id, ...
-1
votes
0answers
28 views

Which database to use for very frequent read/write on large number of rows of small value

I am not sure if this sounds like another suggestion-seeking question, but this is a problem that I am not facing. I am developing an application that has a main table and one table that carries some ...
0
votes
0answers
14 views

Why SQL Job history getting removed automatically in SQL Server 2005?

Why SQL job history getting removed automatically in SQL Server 2005 even not configured any user process to remove it? Also not configured "Current log history log size" for Remove agent history ...
0
votes
0answers
14 views

Filtering and updating some data from data-bound datagrid

I have Orders list that consists of Invoice No, Product Name, Supplier Name, Quantity, Unit Price, and Order date. What I want is the following: First, after running the code, I want to show all the ...
0
votes
2answers
26 views

Mysql DB structure (architecture) advice

Check this image of a table - http://puu.sh/3ipDq.png How can I model this in MySQL (sql) ? I want to be able to store data contained in this table in a normalized fashion in my database table. I ...
1
vote
1answer
40 views

With MySQL how to distinguish between a NULL value and a non-existent value

For example there is a main table: +----+---------+ | Id | column1 | +----+---------+ | 1 | a | | 2 | b | | 3 | c | +----+---------+ And a second table to join with: ...
-2
votes
2answers
30 views

How to use split a string and get all the values in array in sql server 2005

I am searching for a code that helps me let the same thing done as c# or c++ code. Which is string[] array = new string[5]; array = newstring.split(','); The new array get stored all values one by ...
1
vote
2answers
30 views

How to convert varchar2 column containing decimal numbers to number

I have a column named discount of type varchar2. It contains decimal numbers as well as integers. I want to convert it into number type. So I used this query update table_name set ...
-2
votes
2answers
14 views

Tips on developing EMR system

We are asked to develop an EMR system. But we are not fully knowledgeable about the coverage of an EMR. Any tips on how we are going to start this project? And we have decided to use ASP.NET and SQL. ...
0
votes
2answers
35 views

How can i save data using html file rather than modelform in django

I want to save data from a html form rather than from modelForm in django. I am using MySQL database. create.html <form action="QACreate/qa_create/" method="post" id="createform"> {% ...
0
votes
1answer
25 views

what kind of database should I use for EMR system?

I would like to create an EMR system. Any suggestion on what kind of database should I use and how to implement such? By the way im planning on using ASP.NET for the website. Thanks!
0
votes
1answer
33 views

Dynamic SQL value from table

I'm working with a dynamic query right now and I need values from a table. My query so far: DECLARE @query varchar(1500) SET @query = 'SELECT Id,' + 'SUM(CASE WHEN ...
1
vote
3answers
35 views

Syntax errors in MS Access converting from SQL

From my earlier question subqueries-on-subqueries I'm now trying to put this into access The code is from answer one on the link, copied and pasted exact with the exception of putting ...
0
votes
4answers
79 views

Update million rows using rowids from one table to another Oracle

Hi I have two table with million rows in each.I have oracle 11 g R1 I am sure many of us must have gone through this situation. What is the most efficient and fast way to update from one table to ...
1
vote
3answers
28 views

Import postgres database without roles

I have a database that was exported with pg_dump, but now when I'm trying to import it again with psql -d databasename < mydump.sql It fails trying to grant roles to people that don't exist. ...
0
votes
2answers
32 views

Upsert with a transaction

I'm using Spring with PostgreSQL and I try to do a sort of UPSERT by using a code like this: jt.update("delete from A where id = 1") jt.update("insert into A (id, value) values (1, 100)") wrapped ...
1
vote
1answer
16 views

SQLite - multiple random result sets with unions

I want to do two SQL queries and get random results returned from each query and then union them together, a bit like this: select colA, colB, colC from tableA order by random() limit 10 union all ...
0
votes
2answers
11 views

Acquiring results from a foreign key reference

This is a noob question so please bare with me. I am trying to set up a database that will hold/maintain a set of user privileges. I am also using Microsoft SQL Server Management Studio. I have ...
2
votes
2answers
63 views

Mysql: using regexp matches as fields?

I read the mysql documentation about regexp but looks like the regexp can be used only as WHERE filters to match rows in SELECT query. Im wondering if is possible to extract the matches of the regexp ...
1
vote
3answers
40 views

Selecting age groups using SQL

This is a follow-up question on Get age from the birthday field with type date using SQL. I have a date field in a MySQL database for the birthday of a user and get the age using this query: SELECT ...
-1
votes
2answers
21 views

Directory tree for storing images - does it actually improve efficiency? [closed]

Something i'm looking into doing is re-designing the file structure we have, I am planning on splitting everything into folders so that it is easy to navigate to the images of a precise product, ...
0
votes
2answers
39 views

Get age from the birthday field with type date using SQL

I have a table in a MySQL database with a field of the type date. Herein the birthday of a user is stored. Is there a pure SQL way to select the age in years from the field?
0
votes
1answer
32 views

Union doesn't work when used with group by in mysql? whats wrong?

i have written a query like (select meterID, timestamp from meter_data where timestamp between 1369282639 AND 1369282699 AND deviceID = "1" GROUP ...
1
vote
2answers
38 views

Insert data into SQL database in VB.NET

I am trying to insert Supplier data into SQL database which I built inside VB.NET. Here is the code that I am using: Dim myconnect As New SqlClient.SqlConnection myconnect.ConnectionString ...
0
votes
0answers
30 views

Should I use NoSQL for this scenario? [closed]

which nosql db should be used if I want to write some billions of entries and I have a predefined query on a 64 character field?
1
vote
1answer
31 views

Fusion of two tables with Specific SUM operation in SQL Server 2012

I have two views in my database, here are their structures: Table 1 (Stock product entries) : --------------------------------------- | Date | Product | Quantity | ...
0
votes
1answer
33 views

SQL append “-large” to every second row where column name is “clean_name”

Is this possible? I want to append the string "-large" to every second row within my products table, where the column is clean_name
3
votes
2answers
33 views

Long columns vs Long rows Database [closed]

I am stuck between choosing a way of database table designing. The scenario is that I need to make database of cellphones and tablets specifications. The database can be in two ways... 1- Long ...
0
votes
2answers
22 views

SQL, Displaying string instead of NULL/actualy value

I'm working on an assignment and am having trouble with this question: *Display the department name and the name of all employees plus their manager status. Status should show message ‘is a Manager’ ...
0
votes
1answer
42 views

Changes (subtle or not) in a database schema that break applications [closed]

Besides the obvious, removing a column, renaming a column/table, dropping a table/schema what would be a list of changes in a database schema that could potentially break applications using it? Would ...
1
vote
1answer
37 views

Android sql database

I try to connect from eclipse emulator android to an sql server using this code: import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; ...
1
vote
1answer
33 views

Android sql database connection

I try to connect from eclipse emulator android to an sql server using this code: String driver = "net.sourceforge.jtds.jdbc.Driver"; Class.forName(driver).newInstance(); String connString = ...

1 2 3 4 5 221