Viewing 15 posts - 16 through 30 (of 74 total)
If you know in advance absolutely every way in which your data will ever be used, then of course some kind of dedicated data manager will be more performant than...
December 14, 2004 at 5:17 am
If the server PC is running XP and has XP's built-in firewall turned on, this might be the problem. You need to open port... 1433 I think it is... on...
November 12, 2004 at 3:25 am
To the best of my knowledge, there is no SQL syntax you can pass to both SQL Server and Access to achieve null-to-zero functionality. While they have a lot in...
November 12, 2004 at 3:22 am
Hard to see how you'd do this purely within T-SQL. Remember the syntax for a trigger starts
CREATE TRIGGER name
ON table
so in effect the table is part of the trigger definition....
October 26, 2004 at 3:40 am
As has been stated, a plain UNION will eliminate duplicates automatically (a fact which has tripped me up more than once!). The BOL documentation is to my mind a bit...
October 21, 2004 at 3:34 am
In brief, a deadlock occurs when two transactions are blocking each other, and there is no way to resolve the situation. For example, suppose transaction X involves locking tables A...
October 21, 2004 at 3:31 am
Access (Jet) SQL queries are basically the same as T-SQL, except that 'complex' queries won't work. Saying exactly what will and won't work isn't really possible.
In terms of syntax, you...
October 20, 2004 at 3:32 am
Assuming Rides and RidesArchive have the same structure, you could just
CREATE VIEW RidesAll AS SELECT * FROM Rides UNION SELECT * FROM RidesArchive
RidesAll is now a view you can query on just...
October 19, 2004 at 2:43 am
The first step is to have an *exact* idea of what you want. You said
> What I want is just the [dept] and [opid] with the largetst count.
which as far...
October 15, 2004 at 4:19 am
I would suggest that your financial-type people would be very unhappy with you altering Orders table records after orders are completed
One solution is...
October 11, 2004 at 2:38 am
>> Is there something I can do to make this perform better?
Yes. SQL Server doesn't 'know' T-SQL - help it out, tell it what you want more explicitly
>> Maybe a...
September 21, 2004 at 3:29 am
Amount user pays for customer service = zero
Tone of user = whiny and belligerent
Estimated quality of service user will receive = ???? hmmm let me ponder....
September 15, 2004 at 3:17 am
I would suggest this: Create a table that can hold all the details of the emails you wish to send. To send an email at a time-sensitive time (ie during...
September 15, 2004 at 3:11 am
I would be interested to see how the performance of this solution compares; it also does not rely on there existing consecutive dates for each ID.
I am going to recast...
September 15, 2004 at 3:05 am
Viewing 15 posts - 16 through 30 (of 74 total)