Forum Replies Created

Viewing 15 posts - 391 through 405 (of 530 total)

  • RE: Cross database permissions

    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...

  • RE: SET vs SELECT

    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...

  • RE: Data Pivot Problem

    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

     
  • RE: Ordering problems

    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...

  • RE: Ordering problems

    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.

  • RE: Prepared Statements vs Stored Procedures

    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

  • RE: Crystal Web Reports from ASP

    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...

  • RE: URgent: system error 33

    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...

  • RE: Should be a simple query but...

    Something like this should work :

    
    
    SELECT
    IsNULL(M.Title, U.Title),
    IsNull(M.Artist, U.Artist),
    M.DiscNo,
    M.TrackNo
    FROM Master M
    ...
  • RE: Starting Point to learn Analysis Services

    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)...

  • RE: very poor delete performance

    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...

  • RE: SQL Statement Runs Slow

    Does it also run slow in CR or Access?

    Can you give us the query?

    Maybe post an execution plan too.

  • RE: %TYPE in T-SQL???

    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,...

  • RE: updates within the same table

    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...

  • RE: updates within the same table

    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...

Viewing 15 posts - 391 through 405 (of 530 total)