Forum Replies Created

Viewing 15 posts - 5,221 through 5,235 (of 6,104 total)

  • RE: DTS Schedule fails on Windows 2000

    I'm assuming you are running the DTS package from SQL Server Agent based on the error message you've given. Is the SQLServerAgent service running under the same account on the...

    K. Brian Kelley
    @kbriankelley

  • RE: Aggregate without using Count(*)

    Using COUNT(*) as you have is a typical way to get full intersection when you have a structure similar to the way you do. Is there a reason why you...

    K. Brian Kelley
    @kbriankelley

  • RE: HELLP!!! WEB base management of SQL

    Please do not cross-post. This is a topic that does belong in Administration. As a result, I have locked this topic in the General forum.

    K. Brian Kelley

    bkelley@sqlservercentral.com

    http://www.sqlservercentral.com/columnists/bkelley/

    K. Brian Kelley
    @kbriankelley

  • RE: single qoute

    You don't have to use TempDB. The poster was using it as an example. One of the advantages of TempDB is it gets rebuilt when SQL Server is restarted. Therefore,...

    K. Brian Kelley
    @kbriankelley

  • RE: MDAC error

    The version of MDAC with SQL Server 2000 is 2.6. The version that shipped with Windows 2000 is 2.5. So it's failing on the update. What you might try is...

    K. Brian Kelley
    @kbriankelley

  • RE: Where is my SQL Server Enterprise Manager?

    Enterprise Manager and Query Analyzer are both part of the client tools for SQL Server. I'm not up to spec on what typically comes with MSDE, as we don't use...

    K. Brian Kelley
    @kbriankelley

  • RE: Where is my SQL Server Enterprise Manager?

    If I remember right, MSDE doesn't come with the SQL Server Enterprise Manager. I believe we installed Office Server Extensions to give 'em a run and of course it dropped...

    K. Brian Kelley
    @kbriankelley

  • RE: Where is my SQL Server Enterprise Manager?

    If you put in the SQL 7 CD, you have the option to install the client tools.

    Enterprise Manager itself is actually a .msc file that requires MMC. For SQL...

    K. Brian Kelley
    @kbriankelley

  • RE: Return Rowcount from a SQL statment

    A table preceded by ## is a global temporary table. The problem with using a local temporary table is it can only be seen within the stored procedure that seens...

    K. Brian Kelley
    @kbriankelley

  • RE: COLLATE Error

    What are you using to do the import? Perhaps the problem is there and not with the table? The reason I say this is because it says there is an...

    K. Brian Kelley
    @kbriankelley

  • RE: Return Rowcount from a SQL statment

    If you are looking for the # of rows affected by a single SQL statement, there is @@ROWCOUNT. For instance:

    DECLARE @Rows int

    K. Brian Kelley
    @kbriankelley

  • RE: What does "null-terminated" mean?

    VarChar and VarWChar are variable length character strings. There needs to be something to mark the end of the string. Character 0x00 (or 0x0000 in Unicode), which means null, and...

    K. Brian Kelley
    @kbriankelley

  • RE: crash server after dbcc reindex

    What is the processor utilization and pages/sec? Perhaps it's just a case of the system being very slow due to the reindex. How long are you waiting for the reindex...

    K. Brian Kelley
    @kbriankelley

  • RE: nvarchar - what is the difference?

    In the second INSERT statement, SQL Server will do an implicit conversion for you. Generally there aren't any issues with allowing SQL Server to do the conversion. However, if you...

    K. Brian Kelley
    @kbriankelley

  • RE: Improving procedure time to complete...

    How often does the stored procedure run and is it a particularly complex one?

    K. Brian Kelley

    bkelley@sqlservercentral.com

    http://www.sqlservercentral.com/columnists/bkelley/

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 5,221 through 5,235 (of 6,104 total)