Viewing 15 posts - 76 through 90 (of 137 total)
Brandie Tarvin (11/11/2011)
Given the scenario, this sounds like a homework question.
You may be right 🙁
November 13, 2011 at 7:30 am
Ninja's_RGR'us (11/13/2011)
Making that update is rather easy, but making it run fast is a hell of another story.
...which is why I'm interested in understanding more about why performance is critical....
November 13, 2011 at 7:23 am
A few observations first:
petervdkerk (11/13/2011)
I have a prospects table and prospectsincampaigns table.See the sample database here: http://www.wunderwedding.com/files/db_initiliazed.zip
I went ahead and downloaded and restored the file, but I should point out...
November 13, 2011 at 7:16 am
Did you restart SQL Server after configuring TCP/IP?
November 12, 2011 at 12:26 pm
Ok, the next step: creating a Descendants ITVF.
First, create the table with test data, and create the ITVF:
USE Sandbox -- Use whatever DB you want, this is just my...
November 11, 2011 at 8:19 am
If I'm understanding correctly, it looks like you're trying to obtain all of the descendants of a particular organization in a hierarchy. One way to handle that is with a...
November 11, 2011 at 7:55 am
The Microsoft Data Warehouse Toolkit: With SQL Server 2008 R2 and the Microsoft Business Intelligence Toolset
November 11, 2011 at 6:52 am
pwalter83 (11/10/2011)
November 10, 2011 at 7:40 am
ChrisM@Work (11/10/2011)
SUM(CASE WHEN e.EQUIPMENT_TYPE_CD like '20%' THEN 1 ELSE 2 END
* CASE WHEN e.BOOKING_EQ_REQ_DETAIL_ID IS NULL THEN 0 ELSE 1 END) AS BookedTEU
This gives you a...
November 10, 2011 at 7:02 am
Thanks! It would be best if you could post table code and sample data; here's an article that explains how to do that: http://www.sqlservercentral.com/articles/Best+Practices/61537/ However, here's a quick stab at...
November 10, 2011 at 6:52 am
I'm guessing the error you're getting is: "Cannot perform an aggregate function on an expression containing an aggregate or a subquery."
In order to do something like that, you'll probably need...
November 10, 2011 at 5:28 am
sqlfriends (11/9/2011)
insert table column1, column2, column3.... Values (......)
insert tabel ..................
I know I can use...
November 9, 2011 at 4:14 pm
Hakuna Matata (11/9/2011)
In general
If Fragfragmentation <5% No Issues
...
November 9, 2011 at 5:12 am
erikpoker (11/8/2011)
JonFox (11/8/2011)
November 8, 2011 at 6:48 am
Viewing 15 posts - 76 through 90 (of 137 total)