Viewing 15 posts - 1,456 through 1,470 (of 1,838 total)
DavidL (12/5/2012)
December 5, 2012 at 11:02 am
ryetimothy (12/5/2012)
December 5, 2012 at 10:39 am
talinkio (12/4/2012)
December 5, 2012 at 9:25 am
ODBC settings are on each client computer. Go to Control Panel / Administrative Tools, and there should be an option called Data Sources (ODBC). From there, you should...
December 5, 2012 at 8:41 am
kaplan71 (12/4/2012)
needed for the database,...
December 5, 2012 at 8:00 am
The two operators can't really be combined. Your best bet would be to use OR conditions instead of an IN function. so you would have:
WHERE ...
December 4, 2012 at 3:19 pm
Are you saying that you are updating 1 record using the results of a subquery which is returning 3 records? In that case it really isn't definded which of...
December 4, 2012 at 3:16 pm
What does the structure of the imported table and the view look like? I'm thinking depending on their definition, you could do your set based inserts either by using...
December 4, 2012 at 3:01 pm
zeycus (12/4/2012)
SELECT max(id) FROM TASKS
After that, given I captured that result in a variable id, I execute a
INSERT INTO TASKS
VALUES (id+1,...
December 4, 2012 at 2:03 pm
another method, which is the one I use in a couple of production OLTP type systems utilizes Service Broker. The advantage with this is you can set the threshold...
December 4, 2012 at 1:46 pm
david.williams 50026 (12/4/2012)
SELECTCOUNT(*)
FROMsys.dm_exec_requests AS der
WHEREder.blocking_session_id > 0
What do...
December 4, 2012 at 1:09 pm
Management Studio Express is the client-side tool that you can use to create, setup, and administer a database that is local or on a server. If you're asking if...
December 4, 2012 at 12:25 pm
Your Name Here (12/4/2012)
...** Blame...........: Ken
...
:hehe: I like that much better than Author in the comment header!
December 4, 2012 at 10:52 am
in looking at this, the complex root node Systems of the XML seems to be confusing SQL Server. If I make the root node just <Systems> instead of <Systems...
November 30, 2012 at 2:24 pm
There my not be enough information here for people to help you. You say the CPU spikes at 50%, that doesn't seem too bad, as long as it isn't...
November 30, 2012 at 8:09 am
Viewing 15 posts - 1,456 through 1,470 (of 1,838 total)