Forum Replies Created

Viewing 15 posts - 3,286 through 3,300 (of 7,429 total)

  • RE: Version 8.00.0444

    Or SP3 if you can go there. But I am not sure where PeopleSoft support level is at.

  • RE: Difficult query

    Actually instead of spounting off a query can you give me what your actual base query is and how the tables relate and what you want to accomplish. I just...

  • RE: Difficult query

    SELECT CASE type

    WHEN 'popular_comp' THEN 'Popular Computing'

    WHEN 'mod_cook' THEN 'Modern Cooking'

    WHEN 'business' THEN 'Business'

    WHEN 'psychology' THEN 'Psychology'

    WHEN 'trad_cook' THEN 'Traditional Cooking'

    ELSE 'Not yet categorized'

    END

    as 'Example',

    CAST(title AS varchar(25)) AS...

  • RE: Protecting Proprietary SQL code

    Speaking of decoy code. You could easily write several SPs that do basic tasks like INSERTS, UPDATES, DELETES, and SELECTS on small tables and even on large tables pulling a...

  • RE: Very Slow Query

    Take a look at the execution plan and see if it is even using the Clustered index on Field1. I don't think it will because the index only has 3...

  • RE: Correct CASE

    quote:


    Sure is amazing what cut/paste can accomplish and the trouble it can cause. This might be kind of like clicking yes to...

  • RE: If Table Empty

    Oooooh, aaaaaw.

    Cool, hadn't thought of that before.

  • RE: Splitting a table - a good idea?

    Ah, I was thinking rows not columns. Never split a table on columns unless you cannot fit it in 8K wide (not counting text).

  • RE: Correct CASE

    Same here, copy and paste.

    Just didn't catch it as was busy with something else at the same time.

  • RE: SQL 6.5 Standard or Enterprise edition?

    Have you tried

    SELECT @@version

    it should output the version number and I thought the type as far as Standard, Enterprise, etc.

  • RE: Query hints

    So really your issue is datatyping problems. I believ your other server may be implicitly converting the int to varchar but the server in question isn't so it gives the...

  • RE: Correct CASE

    IsNull and COALSCE are te same except for the number of options supported.

  • RE: So What is IIS?

    quote:


    I'm a bit hazy on the hole firewall/port thing but web servers listens on port 80 for HTTP and 443 for HTTPS....

  • RE: How to append while keeping original records

    Also, to keep speed up if you have time to allow for, drop your indexes then add back after done, plus disable Triggers and Constraints on TableA if TableB will...

  • RE: Query hints

    However, the query engine makes some odd decisions sometimes.

    Might try a subquery for Table1 thus forcing the query to handle the WHERE condition for the subquery first before the...

Viewing 15 posts - 3,286 through 3,300 (of 7,429 total)