Viewing 15 posts - 391 through 405 (of 530 total)
I'm not sure what you are referring to. It seems obvious to me that, if the app is updating tables directly, you will need update rights on that table (either...
December 2, 2002 at 8:27 am
Correct.
Another difference is the fact that you cannot use SET to assign a value to multiple variables in one go. (e.g. SET @var1 = 'value1', @var2='value2' won't work)
There are a...
November 29, 2002 at 5:15 am
First of all, I would like to remark that you are denormalising your tables. But I guess you have a good reason to do so.
Here's a possible solution
November 29, 2002 at 3:08 am
Yep, your right. Just saw another error in my statement, so here I go again...
I use the Convert function, taking a type to format as yymmdd. You can choose any...
November 29, 2002 at 3:02 am
Another, maybe simpler solution, is to put the event_date in your select in an Aggregate function (e.g. min). This will not change results, since you're grouping on the column anyway.
November 29, 2002 at 1:32 am
One of my previous employers also used the SQLPrepare method. Gives a huge performance boost in comparison to direct execution.
However, as is described in the (very long
November 27, 2002 at 11:53 am
Does it really 'hang', or is there just no page coming up?
Depending on the technology you are using, it might be necessary to install the CR ActiveX on the client...
November 22, 2002 at 4:24 am
System Error 33 :
The process cannot access the file because another process has locked a portion of the file. ERROR_LOCK_VIOLATION
I'm not sure if you can put a backup on...
November 20, 2002 at 9:55 am
Something like this should work :
SELECT
IsNULL(M.Title, U.Title),
IsNull(M.Artist, U.Artist),
M.DiscNo,
M.TrackNo
FROM Master M
...
November 20, 2002 at 2:35 am
You can start off with the tutorial that is included with AS. This will give you at least a good overview of the user interface and the most important (basic)...
November 19, 2002 at 2:15 am
I'm afraid your out of luck. I don't believe there is any 'easy' option for getting this done.
The only solution I see is to remove the FK's, do the DELETE...
November 14, 2002 at 2:16 am
Does it also run slow in CR or Access?
Can you give us the query?
Maybe post an execution plan too.
November 11, 2002 at 11:44 am
I'm certainly no Oracle expert, but from your explanation, I think a user defined datatype is the solution.
If you use a user-defined datatype consistently throughout your database (in table definitions,...
November 6, 2002 at 9:10 am
Ok, now it gets difficult...
You could built a table holding all of the relationships. It would just contain the ItemId of the source and of the destination row.
Eg. (could be...
November 3, 2002 at 10:03 am
I'm not sure I get your question?
To use this kind of technique, there has to be a clear one to one relationship between the record you want to update and...
November 3, 2002 at 8:26 am
Viewing 15 posts - 391 through 405 (of 530 total)