0
votes
1answer
5 views
Prevent Access from Changing Queries
Hello,
Microsoft Access wants to be helpful and change my queries when underlying object (either form or query) does not exist.
For example, if I had a query that did the following...
SELECT …
0
votes
1answer
8 views
ORA-29275: partial multibyte character
I have input data coming from a flat file which has english, japanese, chinese characters in one column.
I am loading these values in a staging table column whose schema definition is VARCHAR2(250 …
0
votes
1answer
20 views
How to see the connection string used to connect to SQL Server
Is there a way to see what connection string was used to connect to SQL Server? Or rather what string was used in a failed login attempt.
Many times I deal with complex systems in which I see …
0
votes
1answer
27 views
Named scope for users (which has_many :tasks) that don’t have a specific task OR no task at all.
class User < ActiveRecord::Base
has_many :tasks
end
class Task < ActiveRecord::Base
belongs_to :user
# has a field "completed"
end
What would be the best way to write a named_scope (or …
1
vote
2answers
292 views
Use Google AppEngine datastore outside of AppEngine project
For my little framework Pyxer I would like to to be able to use the Google AppEngine datastores also outside of AppEngine projects, because I'm now used to this ORM pattern and for little quick hacks …
0
votes
0answers
7 views
SQLCE 3.5 FIPS compliance on Windows Mobile 6.0
What is a positions of SQLCE 3.5 when running on Windows Mobile 6.0 in relation to FIPS compliance.
I have read lots of differing reports on this and need a definitive answer, one which comes from a …
0
votes
1answer
35 views
sql query problem, manipulate data.
I have stored proc that will tell us if there is any new checks to be printed. Now I have to manipulate the data in database table in order to get at least one check to be printed. I didnt write this …
1
vote
1answer
106 views
Django : Error thrown by database : relation “_mytable” does not exist (for a content_type) . Lost app-name
In Django, I have a model, let's call it "MyTable" which uses a content_type Foreign Key to refer to, amongst other things, Profile.
In most cases (as in my unit-tests) I have no trouble with it, but …
0
votes
1answer
996 views
SQL Server Update Trigger, Get Only modified fields
I am aware of COLUMNS_UPDATED, well I need some quick shortcut (if anyone has made, I am already making one, but if anyone can save my time, I will appriciate it)
I need basicaly an XML of only …
0
votes
0answers
8 views
How do I free SQLServerCE’s COM instance from the current running process?
It's been a while since I touched COM so be nice ;) This is under WindowsCE 5.0 with SQLServerCE 2.0.
After calling this to load SQLServerCE 2.0 : -
IDBInitialize *pIDBInitialize = NULL;
…
2
votes
1answer
28 views
Boolean expressions for a tagging system in SQL
Having this SQL tables for a tagging system:
CREATE TABLE tags (
id SERIAL PRIMARY KEY,
name VARCHAR(100)
);
CREATE INDEX tags_name_idx ON tags(name);
CREATE TABLE tagged_items (
tag_id …
0
votes
2answers
133 views
sql server 2000: release lock on table?
I run the following query
select * from my t1 where c1 = 22
and query runs for ever.. How can I find out whats locking that row?
I tried runnning sp_who, sp_who2, sp_lock, and googled for …
1
vote
1answer
66 views
Select `n` last inserted records in table - oracle
Table has surrogate primary key generated from sequence. Unfortunately, this sequence is used for generating keys for some other tables (I did not designed it and I cannot change it).
What is the …
1
vote
5answers
62 views
Sql Shorthand For Dates
Is there a way to write a query equivalent to
select * from log_table where dt >= 'nov-27-2009' and dt < 'nov-28-2009';
but where you could specify only 1 date and say you want the results …
11
votes
15answers
730 views
Explaining why “Just add another column to the DB” is a bad idea, to non programmers.
I have sales people and bean counters who are trying to sell customizations to clients, which is fine. But when a complex change request comes in that I send back a large estimate for, they get …
