Forum Replies Created

Viewing 15 posts - 13,846 through 13,860 (of 14,953 total)

  • RE: Checkbox = true

    I can't see anything about a meal in this code. What am I missing?

  • RE: Cannot resolve Odd Timeout Issue

    I'd definitely check into the possibility of hardware issues and also concurrency issues. Does it time out when there's a heavy load on one or more of the servers...

  • RE: Tally Table

    Jeff Moden (5/6/2008)


    GSquared (5/6/2008)


    Dateadd lists of datetimes. For example, if you need a second-by-second list of all times in a month, or a quarter. (10,000 seconds is a...

  • RE: Search Stored Procedure

    Are you saying that the search has to match ALL words in the search string, as opposed to matching ANY word in the search string?

    So, if the description contains word1,...

  • RE: ON DELETE UPDATE CASCADE CONSTRAINT

    It means that two or more foreign keys might result in a loop of mutual deleting. SQL Server can't deal with that (no computer can), so it prevents it...

  • RE: Data convertion from Sq Hectares to Sq Metres code

    If you change the * to / in the math, that might do what you need.

    (As an aside, "square hectares" is kind of redundant, since hectares is directly a measure...

  • RE: Database hacked - How to find make secure & find traces

    onlybemine (5/6/2008)


    Since movign to stored proc is another big investment because of size of work.. which i couldn't do this stage....

    Also

    How to stop SQL Injection via webforms i am...

  • RE: Database hacked - How to find make secure & find traces

    You might try parsing the log to find out which account is doing the updates. It's always possible someone is directly connecting to the database and doing the updates...

  • RE: How Migrate from MS Access to SQL Server 2005?

    If you're moving data from 1 table with 10 fields, and all that data is going into 1 table in SQL, then using the Import Wizard from Mangement Studio is...

  • RE: help with update statement

    DBA (5/6/2008)


    sorry i wasn't clear. I have Item1, item2, item3 already in my table. I need to update the existing prices. 😀

    Assuming the prices are in the Excel spreadsheet, you...

  • RE: Synonym help needed

    You can create a "synonym" for a linked server, but it's not the same thing as the synonyms created by "create synonym". (It's the English language definition of "synonym",...

  • RE: DispencerID_Wholesaler

    Actually, the query as written isn't all that bad. How well it works will depend on your indexes (assuming the temp tables have indexes created on them, or that...

  • RE: help with update statement

    I'm not clear on what you're trying to update. I see that you have items and prices, but I don't see what you're changing them from/to. Can you...

  • RE: How to increase number of threads in a process?

    Most of the time, SQL Server picks the number of threads pretty intelligently. It may vary the number based on how busy the CPU is, how likely the query...

  • RE: data retrieval time from the server is too slow

    When you say you had an upgrade, do you mean you upgraded from SQL 2000 to SQL 2005, or do you mean something else?

    There are a lot of reasons for...

Viewing 15 posts - 13,846 through 13,860 (of 14,953 total)