Viewing 15 posts - 1,096 through 1,110 (of 3,482 total)
.What if you automated Excel to write the values somewhere? Assign the values to variables (one for the file name too), and then maybe have a connection to your database...
January 14, 2019 at 8:26 pm
If you add a Calendar table and put the FM, FY in there as columns, then this is trivial.
January 14, 2019 at 2:43 pm
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
Viewing 15 posts - 1,096 through 1,110 (of 3,482 total)