1
vote
4answers
36 views
What strategies are available for migrating Access databases to SQL server-based applications?
I'm considering undertaking a project to migrate a very large MS Access application to a new system based on SQL Server. The existing system is essentially an ERP application with a couple of dozen …
1
vote
1answer
10 views
Aggregate data from view as UDF to use in select statement
I have an existing view that returns data in the following format.
option_name product_id
XSMALL (2-6) 17854
SMALL (6-10) 17854
MEDIUM (10-14) 17854
LARGE …
1
vote
1answer
9 views
LINQ to SQL doesn’t update if I include a calculated column
I am populating a DataGrid with the following LINQ code :
Dim myClients = From p In dc.Persons _
Select p
I can navigate my DataGrid, make changes and then click on a …
0
votes
1answer
11 views
SQL query to transform this data dimension..
Is there any simple SQL query to convert this below data
Date - Item - cost
10/31/2009 - a - 1
10/31/2009 - b - 2
10/31/2009 - c - 3
10/31/2009 - d - 4
11/30/2009 - a - 5
…
12
votes
5answers
12k views
Oracle: how to UPSERT (update or insert into a table?)
The UPSERT operation either updates or inserts a row in a table, depending if the table already has a row that matches the data:
if table t has a row exists that has key X:
update t set …
0
votes
1answer
24 views
Get all field names in Microsoft Access Table using SQL
Hello all,
How do I get all the field names in a Table in Microsoft Access using JET SQL?
Thanks all
0
votes
5answers
76 views
Selecting products that haven’t been made in 2 years
I'm trying to get the products that havn't been made in the last 2 years. I'm not that great with SQL but here's what i've started with and it doesn't work.
Lets say for this example that my schema …
0
votes
1answer
83 views
How to catch “Cannot delete or update a parent row: a foreign key constraint fails” expression and throw it on to a new page ?
I use the following code to catch the SQL Expression, when i try to delete a primary key wich is also a foreign key and is mapped to another table, my question is, how do you forward this to a common …
1
vote
4answers
32 views
Data structure enabling “Search by order”
I would like to know what data structure / storage strategy I should use for this problem.
Each data entry in the database consists of a list of multiple ordered items, such as A-B-C-D, where A, B, …
1
vote
2answers
38 views
long running queries: observing partial results?
As part of a data analysis project, I will be issuing some long running queries on a mysql database. My future course of action is contingent on the results I obtain along the way. It would be useful …
0
votes
0answers
4 views
NHibernate linq - Use lambda expression in place of formula attribute on mapping.
NHibernate has an attribute on the property element in the mapping config named "formula" that allows the injections of sql to "calculate" a property. The issue I have is the formula using sql syntax …
1
vote
2answers
25 views
cities and distance by latitute-longitude
I have a table with:
city
latitude
longitude
And I need a sql query to know all cities are 100 miles from new york.
Could anyone help me before I go crazy ?
1
vote
3answers
36 views
SQL: How do I refer to the result of a previous query?
Suppose I have a SQL query that looks like this:
SELECT fName from employees where ssn=123456789;
Suppose I want to follow the previous query with another one:
SELECT fName from records WHERE …
0
votes
2answers
13 views
Subsums in SQL Server 2000
Is there any nice way to get subsums in one query for data like this in sql server 2000?
Input:
Date Value
2008-06-20 10
2008-08-20 20
2008-10-05 5
2008-10-09 30
Desired output:
10 --sum of …
0
votes
0answers
12 views
Connect w/ Sql Server Management Studio to an domain server using domain credentials
Hi there,
I have a machine that's not connected to a domain and I want to connect to server in that particular domain and I do have proper credentials to log on.
I used runas command as follows: …
