Forum Replies Created

Viewing 15 posts - 21,016 through 21,030 (of 22,202 total)

  • RE: SQL SERVER 2005 quick find replace ctrl+h ect..

    Well, it depends. If you have a TSQL script open, it should work just fine (just tested it to reconfirm). If you don't have a script open, the replace window...

  • RE: A "max server memory" question

    I'm not the admin expert that configures our servers, but I do know the guy who does it sets the memory allocation to a fixed amount. Dynamic memory is primarily...

  • RE: Case Statement using Where Clause

    Can you post the full execution plan? You might be hitting the scan because of other things within the query, such as performing functions on the columns then using them...

  • RE: Execution of stored procs

    I'm not sure, but it sounds like you might be talking about execution plans? These show what the optimizer and query engine will do with the code that you wrote....

  • RE: column does not allow nulls

    Yeah, it only takes one row.

    Using my code sample

    UPDATE [ATI].[dbo].[IV00101]

    SET ITEMDESC = x.ITEMDESC

    ,ITMSHNAM = x.ITMSHNAM....

    FROM [AMCHR].[dbo].[IV00101] AS x

    WHERE x.[ITEMNMBR]=[ATI].[dbo].[IV00101].[ITEMNMBR]

    AND x.ITEMDESC IS NOT NULL

  • RE: column does not allow nulls

    fred (2/19/2008)


    I am having a little problem with my update query. I get the following Error msg.

    Msg 515, Level 16, State 2, Line 1

    Cannot insert the value NULL into column...

  • RE: Need recs from SQL DBAs using Visual Studio Database Professional...

    I would not have more than one project for a given database. You should be able to manage a single database all the way from Dev through to Production from...

  • RE: Database Design: member registration

    Yeah, I wouldn't create two data structures for the same data. I'd store the "messy" data right along side the "approved" data but then simply have a clean-up process that...

  • RE: SQL 2005 Perfmon Objects/Counters

    I've got a core, basic, set of counters that I suggest using here. They barely scratch the surface, but they ought to get you started.

  • RE: Where to put "Global" (aggregate) User Defined Functions

    If you do create a common set of code that you want to access from other databases, I wouldn't put it in master or msdb. You never know when a...

  • RE: Update Problem

    Also, not related to the issue you're describing, but worth mentioning, you're performing a non-ansi join between the two temp tables at the end of your query there.

    FROM temp#1 x,temp#3...

  • RE: Database Design: member registration

    If I understand the question correctly, no I wouldn't duplicate the structures & move the data around. Instead, store the member data in whatever format you had planned. Inlcude a...

  • RE: migrate tables from multiple database into one table

    The sample query you're showing looks correct. Verify the data in the original columns. Double-check your actual query (I'm assuming you're posting a sample and you have a real query...

  • RE: Delete ALL records where one field value = checked

    If you use the IF EXISTS clause, it will only fire the code within the BEGIN...END when it finds the existance of a row in the SELECT statement. I'm pretty...

  • RE: Delete ALL records where one field value = checked

    Actually that's only going to delete individual rows. The EXISTS followed by a full DELETE with no WHERE clause is probably what he's looking for.

Viewing 15 posts - 21,016 through 21,030 (of 22,202 total)