Forum Replies Created

Viewing 15 posts - 3,046 through 3,060 (of 7,429 total)

  • RE: New Stored Procedure NAME

    As I have not played with this myself I can only suggest what I would try. Since you are getting some of this from SQL NS in VB do a...

  • RE: Creative Backup Strategies

    If you have a high number of transaction on the server the differential backup can in some situations take longer than a full backup especially later in the time frame....

  • RE: Dead Lock in SQL 2K SP3

    Not sure, is this happening often and is it always the same SPID for the operation? In addition have you added any hot patches after SP3 install and maybe revisioned...

  • RE: Cursors - Are they always the wrong way

    quote:


    Remember the 90-10 rule. 90% of the code runs only 10% of the time, and 10% of the code runs 90%...

  • RE: Index rebuild frequency

    I would not let go below 80% if possible but it might help to segment older data to another table and join with a view if there is a way...

  • RE: Using third party tools

    I got a copy and found it to be highly usefull. My only concerns are what is the compression threshold before loseless becomes lossy potential in data. But so far...

  • RE: .RLL

    .rll's are not registerable and do not need to be. Make sure you review the reditributables details on the SQL Server install disk to make sure you have all the...

  • RE: scheduling sql script

    Create a job in SQL Agent, just paste your Script into a step and set a scheduled time.

  • RE: How to place tempdb in RAM?

    No they feel it is well optimized and that there is no reason to do this. (Says so in BOL in their own words).

    If you are looking to see if...

  • RE: Speedin it up

    If you mean can you access other databases without having to disconnect from one and connect to another the answer is yes. As long as they have proper permissions the...

  • RE: Error in GROUP By Clause

    First it is saying that for object dbo.tblDrug it cannot find a column named 'Category'.

    Secondly there is no Aggregation going on with DrugName so if you correct the Category column...

  • RE: Error during Replicating

    I would most likely suspect just that. You might try setting the locking to page level specifically or use NOLOCK in your Report query to see if affects. However, the...

  • RE: How to place tempdb in RAM?

    Which version of SQL Server?

    If SQL 6.5 it is the Configuration Option 'tempdb in ram'

    7 or later is no longer supported.

  • RE: maximum input parameters for stored procedure

    SQL 7 is 1024

    SQL 2K is 2100

    Found under Create Procdure in BOL for property of n argument.

    All can be Input or Output.

    Edited by - antares686 on 05/02/2003 09:12:26 AM

  • RE: NULLs' effect on Indexes

    Really the major issue there is the fact the number of rows within the index can vary based on the data length of each record. This does cause a bit...

Viewing 15 posts - 3,046 through 3,060 (of 7,429 total)