Viewing 15 posts - 13,846 through 13,860 (of 14,953 total)
I can't see anything about a meal in this code. What am I missing?
May 6, 2008 at 11:07 am
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...
May 6, 2008 at 11:05 am
Jeff Moden (5/6/2008)
GSquared (5/6/2008)
May 6, 2008 at 10:21 am
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,...
May 6, 2008 at 9:37 am
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...
May 6, 2008 at 9:29 am
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...
May 6, 2008 at 9:24 am
onlybemine (5/6/2008)
Also
How to stop SQL Injection via webforms i am...
May 6, 2008 at 9:17 am
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...
May 6, 2008 at 9:06 am
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...
May 6, 2008 at 9:05 am
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...
May 6, 2008 at 8:56 am
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",...
May 6, 2008 at 8:52 am
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...
May 6, 2008 at 8:43 am
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...
May 6, 2008 at 8:33 am
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...
May 6, 2008 at 8:31 am
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...
May 6, 2008 at 8:28 am
Viewing 15 posts - 13,846 through 13,860 (of 14,953 total)