Forum Replies Created

Viewing 15 posts - 6,346 through 6,360 (of 7,429 total)

  • RE: Query to retrieve top records

    Without seeing the DDL of the tables and a sample of data to know for sure. Something like this would do the job. If you want to get into more...

  • RE: Change sort order on SQL7 ??

    You need to do a reinstall to get that properly done.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Query to retrieve top records

    Ok I am confused here. Are you saying you want to get 70% of the records and total them or you want what 70% of the totals are? Or is...

  • RE: SQL performance

    Both the DDL of the tables and the Execution are dead on and the trace numbers look fine except duration. This now has to be either a server settings issue...

  • RE: getting isolation level of processes

    I am not aware a process that can tell you if the isolation was change. You can look at sp_lock at the type of lock. Or if this is being...

  • RE: Is there a standard for doing 'Updates'?

    Hey epol29 I wasn't referring to not use it but he had a specific need to be met that defaulting to NULL would prevent

  • RE: DTS Script Modification Trouble

    You will end up going thru the package to make the changes as I don't know of a search and replace app available. You may want to save the package...

  • RE: Limited disk space/using network drives

    quote:


    Sadly, I didn’t find out the backup had been stopped until we were having a (rather, heated) discussion about getting access to...

  • RE: Release SQL Memory

    SQL allocates memory as often as it needs it, then normally unless the OS triggers a release it will keep hold as it anticipates for it to be needed again....

  • RE: front-end tools in SQL Server????

    About the easiest but most painfully poor way to do this is Access using linked tables.Other than that, I know of nothing right off.

    "Don't roll your eyes at me. I...

  • RE: Need help inserting records into tables

    If you know how to write a SELECT query to get what you want then you just do an

    INSERT INTO tblNameHere (columnlist) YOURSELECTSTATEMENT

    Just make sure you account for previous...

  • RE: Maintenance and Support Requirements

    Well there are a lot of factors to your questions, and then how many questions do you need answered is another. I suggest grab a good book on SQL (or...

  • RE: OLE DB issues after SQL2000 install

    Look in Client Network Utility and see if the SQL7 instance is defined there. If so make sure the SQL2000 instance is as well. I am still looking for anything...

  • RE: Is there a standard for doing 'Updates'?

    The only problem with epol29 exaplme is the fact you stated that NULL may be what is being submitted. Here is the change that you need to make

    CREATE PROCEDURE UpdateAddress...

  • RE: OLE DB issues after SQL2000 install

    First what is the exact error and are you using " identifiers in the SP? (Or better can you post the SP itself)

    "Don't roll your eyes at me. I will...

Viewing 15 posts - 6,346 through 6,360 (of 7,429 total)