Viewing 15 posts - 331 through 345 (of 451 total)
pwalter83 (10/16/2012)
SUM of NCV_BL.TEU where NCV_BL.POL_LOCATION_CD or NCV_BL.POD_LOCATION_CD is not present in MG_VSLVOY_SCHEDULE.PORT_CD for the SAISAN_VESSEL_CD, SAISAN_VOYAGE_CD and...
October 16, 2012 at 6:22 am
In the Expression editor, under the Common Functions in the Category window look at the Date & Time functions. Use the DateAdd() function.
=DateAdd("d", 15, Fields!payment_date)
HTH,
Rob
October 16, 2012 at 6:13 am
Could you do something like:
;WITH CTE_Numerator (DivisionGroup, NumCnt) AS
(
SELECT IR.DivisionGroup, COUNT(PatientKey)as Count
FROM [Quality].[dbo].[InpatientReadmissions] IR
WHERE (IR.ReAdmission30Days = '1')
AND (IR.DischargeDateTime >'2011-10-01' and IR.DischargeDateTime<'2012-08-01')
AND (IR.PlannedReadmission = '0')
...
October 13, 2012 at 1:01 pm
Jon-538504 (10/13/2012)
October 13, 2012 at 12:45 pm
Kasinathan (10/13/2012)
October 13, 2012 at 12:39 pm
bpowers (10/12/2012)
The part numbers include numeric, alphanumeric, and sometimes special characters (-, /, etc...). I receive an conversion fail error when using COALESCE.
COALESCE merely returns back the first non-Null item...
October 12, 2012 at 2:31 pm
bpowers (10/12/2012)
October 12, 2012 at 9:55 am
You'll need to install the PowerPivot add-in into your Excel.
http://www.microsoft.com/en-us/bi/powerpivot.aspx
Rob
October 12, 2012 at 9:41 am
yogi123 (10/12/2012)
I have a requirement delete some old records and reindex the single table,how can we reindex a table?
If we delete some records from table,is it necessary to reindex the...
October 12, 2012 at 9:19 am
lmd999 (10/11/2012)
I was able to calculate the percentage of the correct questions answered for each...
October 12, 2012 at 6:12 am
ByronOne (10/12/2012)
I have a table in sql called dbo.Contracts that contains a number of columns but in respect to this query the following: LicenceNumber, StartDate, EndDate, LengthWeeks
I have recently...
October 12, 2012 at 6:07 am
robm1391 (10/11/2012)
Essentially it is checking to see if employees are all...
October 11, 2012 at 2:18 pm
Looks like homework, but tell us what approach you've taken. What didn't work? What have you tried? How far are you?
Rob
October 11, 2012 at 2:10 pm
bhushan_juare (10/11/2012)
I am in dilema for selection of a BI Reporting Tool. After spending few hours I just came to knew there are following open source BI Tools...
October 11, 2012 at 11:39 am
See if this works for your situation: http://weblogs.sqlteam.com/joew/archive/2008/11/12/60755.aspx
HTH,
Rob
October 11, 2012 at 8:31 am
Viewing 15 posts - 331 through 345 (of 451 total)