Viewing 15 posts - 1,096 through 1,110 (of 3,480 total)
Are you just adjusting for a Fiscal Year or similar? You could do that with a Calendar table.
January 14, 2019 at 1:55 pm
Essentially, you're just checking if the Customer has Instore sales and/or Online sales?
Can't you just do that with IF(COUNTROWS(RELATEDTABLE('Sales'))>1,1,0) and put it in the Customer table? You might need...
January 14, 2019 at 10:52 am
SQL Sat Nashville is tomorrow... if you run fast, you could probably squeeze in a session or two.
January 11, 2019 at 7:46 pm
January 10, 2019 at 7:25 pm
Did you run the code to create the function? Sounds like you didn't.
January 10, 2019 at 7:05 pm
Oh, okay. Thanks! I'll have a play with it and see how I make out.
January 10, 2019 at 1:13 pm
Like this?
https://stackoverflow.com/questions/420741/getting-list-of-tables-and-fields-in-each-in-a-database
I suppose you could easily find non-matching tables by grouping on column name and getting COUNT = 1?
SQLCompare by RedGate does that, I...
January 9, 2019 at 2:26 pm
January 9, 2019 at 12:13 pm
Figured out a small piece of this that was still wrong. I needed to change so that I get the MAX level for each course. Then it makes sense. (Because...
January 9, 2019 at 10:31 am
Here's an example I shamelessly copied out of Itzik Ben-Gan's T-SQL Querying book:SELECT custID, orderID, orderDate, val,
SUM(val) OVER (PARTITION BY custid, YEAR(orderDate)
ORDER BY orderDate
RANGE...
January 7, 2019 at 12:25 pm
(sorry for interrupting)
It's possible to do a running total (if you're using 2012 or later...)
See this: https://docs.microsoft.com/en-us/sql/t-sql/functions/sum-transact-sql?view=sql-server-2017
Look for the Cumulative Total.
PARTITION OVER is analogous to...
January 7, 2019 at 9:01 am
What if you do something like copy the column names from the first sheet, then loop through the rest of the sheets, and insert a new row above the existing...
January 5, 2019 at 6:39 pm
I think I get it... Here's a tiny subset of the columns in the Catalog table:SELECT ItemID
, c.[Name] as ReportName
FROM dbo.Catalog c
WHERE c.Type =...
January 4, 2019 at 5:28 pm
What if you insert the data in batches? That would make the transactions smaller, and maybe faster.
January 3, 2019 at 1:50 pm
Viewing 15 posts - 1,096 through 1,110 (of 3,480 total)