Structured Query Language (SQL) is a language for querying databases. Questions should include code examples and table structure. This tag refers to the standard language, not for questions about specific vendor extensions, like MySQL or Microsoft SQL Server, so if you think your question relates to ...
7
votes
0answers
283 views
Problems understanding intermittent inconsistencies when loading data with SSIS package
The problem
During the passed few months the below described procedure has worked without any problems a vast majority of the times it has run (on 2008 r2). We have, however, three instances of ...
3
votes
0answers
19 views
configuration of custome database with openfire
I am using the openfire 3.7.1.I have followed this steps to configure the custom database in openfire.The main problem is that if i set the property
provider.user.className = ...
3
votes
0answers
227 views
How to Update an Existing Record in a Dataset
I can't seem to update an existing record in my table using a strongly-typed dataset. I can add a new record, but if I make changes to an existing record it doesn't work.
Here is my code:
private ...
3
votes
0answers
104 views
get a listbox binding on both the calendar and a combobox VIDEO
I have filmed my problem as it is easier to explain on video. I want the listbox to display the time began from the bookings table, that relies on the date from the bookings table and the room from ...
3
votes
0answers
150 views
SQL Server specific types support for OrmLite
I just learned about a genius type that would simplify a lot of my work but it looks like my preferred ORM does not recognize it.
Is there a workaround to let ServiceStack OrmLite recognize ...
3
votes
0answers
247 views
Visual Studio 2012 snippet shortcuts not working for SQL
I have a custom code snippet that I can access just fine via Ctrl+K, Ctrl+X and then typing 'm' for 'My Code Snippets' and hitting Tab, then typing the first letter of the snippet I want to use, then ...
3
votes
0answers
190 views
Magento - Single Coupon marqued as used when payment pending
I've got a problem with magento single coupon code that is marked as having been used at the time the customer click on the ‘Place Order’ button. If the Paypal payment fails or the client abandon, he ...
3
votes
0answers
132 views
Doctrine 2: How can extend entity with sql code column?
I have entity
mh\BTBundle\Entity\Post:
type: entity
table: post
repositoryClass: mh\BTBundle\Repository\PostRepository
fields:
id:
id: true
type: ...
3
votes
0answers
70 views
How to read tbf file with STAMP encryption
I have Toronto Stock Exchange stock data in a maxtor hard drive. The data is a TBF file with .dat and .pos components. The .dat file contains all the Stamp format transmission information in binary ...
3
votes
0answers
156 views
Quickest method for matching nested XML data against database table structure
I have an application which creates datarequests which can be quite complex. These need to be stored in the database as tables. An outline of a datarequest (as XML) would be...
<datarequest>
...
3
votes
0answers
1k views
Weird SSIS Error (Process Exit Code 255)
I'm having an issue with an SSIS job I recently created that is breaking with a strange error.
Background Info
This is an SSIS package (.dtsx) that is being run with a SQL job (SQL Server 2008, job ...
3
votes
0answers
237 views
Notes not updated in Visio 2010 reverse engineer with SQL server 2008
I am using ms sql server as the driver to construct a datasource when I do the reverse engineering in the visio 2010. Only tables are imported. E-R diagram generated is fine although only part of ...
3
votes
0answers
188 views
Entity Framework migration with already deployed SQL compact database
My situation: EF 4.3, private install of SQL Compact 4, .Net FW 4, c# winform
Problem: after the application was deployed there was the inevitable change requested that required me to create a new ...
3
votes
0answers
181 views
QSqlField name() method returns “”
I have a class (ServicesTableModel) which inherits from QSqlRelationalTableModel. In the constructor I have:
ServicesTableModel::ServicesTableModel( QWidget* parent, QSqlDatabase db )
: ...
3
votes
0answers
145 views
Nlog database target - to use keepConnection or not?
I'm using NLog in an asp.net 2.0 application; it gets a lot of traffic and logs a lot of data (average about 5000 log records per day), for both error logging and statistical purposes. It uses two ...
3
votes
0answers
994 views
Executing parameterized stored procedures using PetaPoco
It's been two days I'm wrestling with PetaPoco to implement a search solution (evidently with some search parameters) which has custom paging in database. I couldn't figure out how to configure ...
3
votes
0answers
222 views
Spatial Join in Entity Framework
I want to write a join statement in LINQ using the dbgeography's "Intersects" method (I am using EF June 2011 CTP). The problem is if I write something like this:
var joinQuery = from spQ in ...
3
votes
0answers
422 views
MAX of a varchar column using HQL
I am trying to find the maximum value of a varchar column in mySQL DB using hibernate query language.
This is the query i am trying to do, and this works fine in native SQL:
select max(cast(rs.marks ...
3
votes
0answers
472 views
How to use Massive.cs's .Paged() query with table joins?
I'm using Massive, by Rob Conery, as my "DAL". I've built a repository class using it. I've run into a small problem. I'd like to use the .Paged() method to build paging into one of my ASP.NET MVC ...
2
votes
0answers
45 views
SQL Express client memory usage differs to SQL Enterprise client memory usage
I am experiencing a big difference in .Net application memory usage using the same app against two copies of the same database. The only difference is that in scenario 1 I am using a local copy of ...
2
votes
0answers
25 views
dbext connection string for sql-server
I have dbext installed into gVim - the plugin menu is visible and the help file are accessible; just not helping at the moment!
Suspect it is a connection string problem. I have the following in ...
2
votes
0answers
30 views
Run Query using Linked Servers
I am trying to disable constraint in a table via the Linked server. I am using the below code and it troughs an error.
ALTER TABLE [LINKED_SERVER].[SERVER].[dbo].[TABLE_NAME] NOCHECK CONSTRAINT ALL;
...
2
votes
0answers
49 views
Strange “SELECT” in WebSQL or not?
I'm trying to use WebSQL using html5rocks example. All goes well until I try to do "SELECT * FROM todo" then there is something not clear to me. Callback returns SQLResultSet without ...
2
votes
0answers
109 views
How to execute a block statement in C# for Firebird
I am trying to delete all tables in a database in Firebird using the following command:
string dropAllForeignKeysSql =
"EXECUTE BLOCK RETURNS (stmt VARCHAR(1000)) AS "+
"BEGIN "+
"FOR "+
...
2
votes
0answers
35 views
SQL return code with Razor
I am looking for a way to get the SQL return code when issuing any database commmand using razor. I haven't found any examples. Is the SQL return code returned with the result set?
For example,
var ...
2
votes
0answers
26 views
Login DAO sql statement involving multiple joins
I am trying to create a query that will return through DAO whether the inputted username and password is correct. I'm using java for DAO implementation as well as JSF.
I have the following tables:
...
2
votes
0answers
39 views
Declaring a table of type object where the object contains two nested tables
I am creating staff object who can teach on 1 or many modules. I have a nested table that contains refs to the module table. I was also going to create another to show the modules that the staff ...
2
votes
0answers
86 views
How to intercept and change sql query dynamically in mybatis
I use mybatis to perform sql queries in my project. I need to intercept sql query before executing to apply some changed dynamically. I've read about @Interseptors like this:
...
2
votes
0answers
73 views
Concatenate rows into CLOB
There are many similar questions on this subject, but I can't find any with solutions that keep into account anything with an end result too large for varchar2.
So what I'm trying to do is change ...
2
votes
0answers
74 views
How to return the remote database name which is calling a stored proc in a different database?
I have a number of different databases on a single SQL Server 2008 R2. For arguments sake, let's call them DB_A, DB_B, and DB_C. I've been asked to develop as stored proc that will live on DB_A. This ...
2
votes
0answers
66 views
Query quirks with DB2, no-op coalesce halves the runtime
I'm working on optimizing some queries for a DB2 database. Most of them are running fine, but a few with rather large returned datasets (up to 30k rows or so) are giving me some trouble. There's ...
2
votes
0answers
125 views
ORA-00922: missing or invalid option when using CREATE TABLE
I keep getting this error when I attempt to create tables. This is what I have so far:
CREATE TABLE Club
( Club_ID NUMBER(7) NOT NULL
, Club_Name VARCHAR2(35) NOT ...
2
votes
0answers
93 views
Set LD_BIND_NOW variable to solve TNS Linux Error: 29: Illegal seek error
I faced issue while starting TNS Listener for my Oracle XE DB on my Linux box using bash shell:
LSNRCTL> start
Starting /oracle/product/11.2.0/xe/bin/tnslsnr: please wait...
TNS-12537: ...
2
votes
0answers
82 views
Django double inner join with mysql slow
Why is this query slow in Django using MySQL?
I have three models I'm filtering on that relate to each other with a OneToOne and ForeignKey. The following query on my DB with approximately 60k rows ...
2
votes
0answers
70 views
How to create/Map base31 “Identity” column in SQL
this is my first time posting to a forum for a question, as I typically prefer to research and find the answer myself, but I am programmer enough to admit database programming is my Achilles' heel.
...
2
votes
0answers
45 views
Split Database Security
I'm working on an .NET MVC SQL application that will contain sensitive data, for example- HIV test results or income. I want to error-proof this privacy as much as possible so no one except the user ...
2
votes
0answers
58 views
Derby DB Insert Error SQL state 21000
I am attempting to insert data into a table in my database. I am using an Oracle Apache Derby DB. I have the following code-
Insert into P2K_DBA.ODS_CNTRL
(ODS_LOAD_ID, ODS_STATUS, USR_WWID, ...
2
votes
0answers
95 views
Visual Studio SQL Server Object Explorer Not Saving Connections
I'm using Visual Studio 2012 for development. I really like using the SQL Server Object Explorer to work on database related tasks (queries, schema changes etc.). The issue is, every time I reload the ...
2
votes
0answers
148 views
Rhino-etl/C# Data Mapping issue
I'm trying to retrieve data from one database and insert it into another, I am using Rhino-etl to carry out the data mapping, within a C# application. The destination database is located on a server, ...
2
votes
0answers
174 views
self join query issues with PostGIS
I have a table and I am doing a self join on it with geo-spacial functions fro PostgreSQL. Now I am expecting to build the point of intersections of each intersection except for those that has the ...
2
votes
0answers
111 views
Entity framework database first mappers issue
I am using VS2010, with SQL server 2008 R2.
I am a complete beginner at both c# and Entity Framework.
The issue I am having in the example below is that when I try to get the questions associated ...
2
votes
0answers
141 views
Get Geolocations from SQL database to be used in Bing Maps
Basically I have a set of geolocations and other information corresponding to each point in a table in a SQL database. I have a Bing Maps website with checkboxes to set different filters for which ...
2
votes
0answers
222 views
Google spreadsheet “=QUERY” join() equivalent function?
This question is concerning joining two databases in Google spreadsheet using =QUERY function
I have a table like so in range A1:C3
a d g
b e h
c f i
I have another table
c j m
a k n
b l o
I ...
2
votes
0answers
128 views
Validating Long RAW column in oracle with SQL Server after migration using SSMA
I have an oracle 11g source which I hae migrated to SQL Server 2008 using SQL Server Migration assistant tool from microsoft. The oracle source had a table that contained a long raw column. The type ...
2
votes
0answers
261 views
SQL Server + Decimal arithmetic
I am working on a sql sproc based on the haversine formulae and it's returning results even though the distance is greater than of my @Radius, I then print out the distance value to my program and ...
2
votes
0answers
149 views
How to integrate sqlite extensions in XAMPP?
There's an extension on the http://www.sqlite.org/contrib?orderby=date, extension-functions.c, which integrates the SQRT command in sqlite.
How can I integrate this and use it in my Windows-XAMPP ...
2
votes
0answers
191 views
Display sql data source with a custom column
I am trying to create a page that lists all the active employee's with a link to take them to a page to allow their employer to modify their employee terms (pay rates etc).
My usercontrol gets the ...
2
votes
0answers
62 views
Is MPTT an overkill for maintaining a tree like database even if the depth is around 3 - 4?
I am planning to store some tree like data in MySQL.
Topics can have sub topics and they in turn can have more sub topics.
Is Modified Preorder Tree Traversal(MPTT) an over kill even if the maximum ...
2
votes
0answers
404 views
Using CLOB datatype in SQL stored procedure
I am calling an DB2 SQL stored procedure (which is in mainframes) with a CLOB datatype as out parameter among other parameters.
CREATE PROCEDURE ACT_GETAUDIT01
...
2
votes
0answers
193 views
SQL Server 2008 transactional replication 'Missing end comment mark '*/''
I'm trying to set up transactional replication on a Dynamics NAV database on SQL Server 2008 R2 SP1.
Using the same servers I have been able to set up replication successfully on a different DB.
I'm ...


