Forum Replies Created

Viewing 15 posts - 21,586 through 21,600 (of 22,184 total)

  • RE: function executing error

    I can't see it, but somewhere in there you're adding or setting a string to a number.

    Try debugging it by adding PRINT Statements to watch the values change. That's...

  • RE: SQL Server Management Studio for the masses

    I don't know. I lost the training argument too. I'm looking up at the two book set of structured classes, lesson plans, documentation and tests that I had to spend...

  • RE: Which function I want use for this query

    Sincere apologies, but I can't understand the question or the requirements. A little clarification maybe? Possibly some table structures and maybe some of the code that you've tried so far?

  • RE: TSQL by Duration (Response Time)

    Take everything Gail says to heart.

    In addition, you might want to check out this article[/url].

    It's meant as a basic introduction to checking performance of your system.

  • RE: TSQL Assistance - Multiple database,multiple servers

    Since you can't code 'USE @Dbname' you need to do something like this:

    sp_msforeachdb 'USE ?;exec master.dbo.SingleLineSpaceUsed'

    But when you do this, it still runs from within the master db.

    You could modify...

  • RE: Default parameters & Output parameters nightmare

    Tami D (10/23/2007)


    Thank you for the response. Unfortunately, I am using an output parameter and do not have the luxury of just excluding the column in the call to...

  • RE: Huge Table

    Even though I didn't have all the information, despite the number of rows, it's not a very big table. I did some experimentation. They shouldn't be hitting any issues assuming...

  • RE: A Matter of Degree

    webrunner (10/23/2007)


    Jereme Guenther (10/19/2007)


    I don't know how or if you have time to read all of these posts, but here are my stats.

    I obtained a BS in Software Engineering picking...

  • RE: Huge Table

    I set up a sample using these scripts:

    CREATE TABLE BigTable

    (

    ID INT,

    Date SMALLDATETIME,

    [Value] decimal(18,10)

    )

    WITH x AS (SELECT 1000001 AS Id

    ,GETDATE() AS MyDate

    ,42.2 AS MyValue

    UNION ALL

    SELECT

    ID + 1

    ,MyDate

    ,MyValue

    FROM X

    WHERE ID <...

  • RE: Need to intelligently concatenate words

    I've never heard of anything like that. Best guess I can come up with (and it stinks) is to run spell check on the fields after you concatenate them...

  • RE: Huge Table

    That's good.

    On which columns? Is it the PK? If not the PK, is it unique? What does the query plan that is taking 3 minutes look like and how...

  • RE: Recommended SQl Server 2005 Books

    All three of the Inside SQL Server 2005 books provide information you'll need.

  • RE: How to check if SQL RPC is turned on...pros/cons?

    Ignore my last post. It's utterly wrong.

  • RE: Huge Table

    What kind of indexes do you have on the table?

  • RE: How to check if SQL RPC is turned on...pros/cons?

    It is a security issue. You have to make that determination for yourself. It's off by default. Run sp_configure. It's the setting 'Remote Proc Trans' and setting it to 1...

Viewing 15 posts - 21,586 through 21,600 (of 22,184 total)