Forum Replies Created

Viewing 15 posts - 331 through 345 (of 1,413 total)

  • RE: Stored Procedure error

    You can't specify a parameter with a dynamic name for the object to update. You would need to use dynamic sql. But what are you trying to accomplish here? There...

  • RE: Can not conncect to or see other yukon in my network

    Just a guess, but is named pipes enabled on the server? Check in Surface Area Configuration utility.

  • RE: Store executon time

    Just surround the call to xp_cmdshell with time measurment, like this:

    DECLARE @start DATETIME

    SET @start = GETDATE()

    EXEC master.dbo.xp_cmdshell 'command here'

    PRINT DATEDIFF(ms, @start, GETDATE())

  • RE: Indexing

    Vaibhav, these are difficult questions since there are many answers and different people will have different opinions. In any case though the answer is always "it depends".

  • RE: Table for Stored Procedures?

    And if it is the text of a procedure you are looking for you should take a look at syscomments. Or, better yet, use the system stored procedure sp_helptext to...

  • RE: Cannot Install Sql server 2005 ctp - Management Studio feature

    Just a guess, since I have not used that cd of course, but maybe the SQL Server 2005 Developer Edition is a separate installation? The Visual Studio 2005 installation installs...

  • RE: Cannot Install Sql server 2005 ctp - Management Studio feature

    I do not think it is possible to install the clients only, if that is what you are asking. Maybe with August CTP (if it ever gets here...) it will...

  • RE: Max Function

    With proper indexing max() should be as fast as the following, which would otherwise be the fastest alternative:

    SELECT TOP 1 column

    FROM table

    ORDER BY column DESC

  • RE: Connecting to non-default port with Enterprise Manager

    Use a comma to specify the port, such as 123.123.123.123,2433. Or you could create an alias in Client Network Utility and register the server using that name.

  • RE: Audit logs

    There are no automatic audit logs in SQL Server. You can use Profiler to trace any activity you want and store as audit logs if you wish. In SQL Server...

  • RE: sql server y2k5 evaluation period expired

    I have no problem running June CTP right now. Are you sure that you do not have Beta 2? What output does SELECT @@version give you? Mine says this:

    Microsoft SQL...

  • RE: Can not conncect to or see other yukon in my network

    To be able to see the SQL Server 2005 instances on a machine you must have the SQL Server Browser enabled and started. Use either the Configuration Manager or Surface...

  • RE: SQL Server 2005 In Production Environment

    You won't relly come up with anything new by installing it. It is a great product, there is a lot of nice new features, and it is a beta so...

  • RE: Minus in SQLServer

    Ok, I have now checked what it says in Inside SQL Server 2000, and I do not make the same interpretation as you do. I cannot find anywhere where she...

  • RE: Minus in SQLServer

    But it is still not row-by-row, if by that it would mean "as opposed to being set based". You are talking about the physical implementation. In fact, take a look...

Viewing 15 posts - 331 through 345 (of 1,413 total)