Viewing 15 posts - 16 through 30 (of 32 total)
Jason Selburg (10/7/2015)
in this example, newCol4 and newCol5 are your non-existent columns. Using the CAST,...
October 7, 2015 at 1:38 pm
PB_BI (10/1/2015)
I'm pretty sure you can do what you need using IF and/or SWITCH. Lot's of stuff out there for this:https://msdn.microsoft.com/en-us/library/gg492166.aspx
https://msdn.microsoft.com/en-us/library/ee634824.aspx
http://www.powerpivotpro.com/2012/06/dax-making-the-case-for-switch/
http://sqlmag.com/sql-server-analysis-services/ssas-tabular-part-4-deep-dive-dax
Thank you for the links. I came across IF...
October 1, 2015 at 7:41 am
Same error message.
September 1, 2015 at 7:58 am
Lynn Pettis (8/31/2015)
update n SET
[INTERNET-ADDRESS] = 'bsmith@acme.com'
from
SKYWARD.PUB.NAME n
INNER JOIN SKYWARD.PUB.QUDDAT-DATA qd
...
August 31, 2015 at 3:44 pm
Lowell (8/31/2015)
i would use the ansi 92 syntax to make it clear to...
August 31, 2015 at 3:44 pm
Lynn Pettis (8/31/2015)
All I see are two select statements.
Thanks. It's been updated.
August 31, 2015 at 3:10 pm
Thank you for your quick reply. If I use an UPDATE statement for this, how do I tell it to match on the employee number between the spreadsheet and the...
August 31, 2015 at 10:09 am
Thank you for the feedback. I had to alter what you posted slightly to get it to work. See below:
UPDATE AnnualClassifiedPAFs
SET [Hrs Total 1] = (ROUND ([Hrs Total 1],2))
July 23, 2015 at 11:34 am
Thanks for the feedback I will look over the article you posted a link to and back to you. Thank you for taking a look at this for me.
June 4, 2015 at 9:30 am
Looking at the query, I don't see anywhere that is calculating the percentages?
I do not have a sql insert statement for this data as it is being inserted from a...
June 4, 2015 at 8:59 am
There's so much to know about BI but I can break it down into 3 groups: Reporting, ETL and Analysis. If you want to go the reporting route learn SSRS...
June 3, 2015 at 4:31 pm
I think this is what you are asking for:
USE [CurriculumPD]
GO
/****** Object: Table [dbo].[LDCScores] Script Date: 6/3/2015 8:02:38 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE...
June 3, 2015 at 8:09 am
J Livingston SQL (3/10/2014)
with cte_names as
(
SELECT StudentID, MAX(StudentName) AS StudentName
FROM lcdscores
GROUP BY StudentID
)
SELECT lcdscores.StudentID
...
March 10, 2014 at 2:38 pm
Attached is a spreadsheet that depicts what we have in SQL and what the output needs to be based on that information. It is a very small sample, but you...
March 10, 2014 at 12:00 pm
IT wasn't notified of the project until last minute. An excel spreadsheet was already distributed out to teachers to submit their scores with. It's not the ideal situation, but it's...
March 10, 2014 at 9:31 am
Viewing 15 posts - 16 through 30 (of 32 total)