Viewing 15 posts - 1,456 through 1,470 (of 3,500 total)
FFS! Just post the contents of the text file into the message window!--Create New Table
drop table if exists Test_Tbl
CREATE TABLE Test_Tbl (Id varchar(1), Name...
August 3, 2017 at 12:05 pm
Only thing I can think of that even might work is to create a subform and add two parameters to it for DIP and Data. Then add that to the...
August 1, 2017 at 9:45 pm
What happens if you run the stored procedure that the report is based on?
If you're on a test server, you could do something evil like run
DBCC FREEPROCCACHE
to...
August 1, 2017 at 12:28 pm
Where does one get these files:
library("rClr")library("rsqlserver")
?
July 30, 2017 at 4:49 pm
Are the users in a Group in Active Directory? Are the objects they need permissions to in the same schema by themselves?
July 30, 2017 at 3:40 pm
Sue,
Thanks for the reply. I figured I had nothing to lose, so I installed the Data Mining Add-In... Now to figure out how to set up SSAS Multi-Dimensional... =(
July 27, 2017 at 3:04 pm
How long does it take to run the report if you run it directly?
Did you look at the stored procedure that the report is based on? (it is based...
July 26, 2017 at 9:02 pm
Why not make things easy for everyone and tell us all what your expected output is given the data you have already provided?
July 25, 2017 at 11:51 pm
Use OR/IN in the your WHERE clause.
July 24, 2017 at 8:42 pmSELECT itemno,item code,closedate
FROM item a INNER JOIN itemcode bFROM item a INNER JOIN itemcode b
There's even an example XLS file...
http://www.daxpatterns.com/budget-patterns/
If you want Q1 to ignore the previous quarter (Q4 of previous year), you could do something simple like
IF(Calendar[Quarter]="Q1",BLANK(),...
July 23, 2017 at 10:08 pm
You're looking for strings in any column in any table? Sounds like the design of your database is seriously dodgy.
July 21, 2017 at 10:14 pm
Thanks for the data sample... however, that's not super helpful. (Imagine copying and pasting that into SSMS and trying to run it.) Here's how to do it:
[code...
July 20, 2017 at 7:48 pm
You really need to open up SSMS and try learning something.
How about the painfully obvious:
SELECT *
FROM #Dummy
WHERE RandomString LIKE '%Mr. %'
OR RandomString LIKE...
July 20, 2017 at 2:35 pm
Viewing 15 posts - 1,456 through 1,470 (of 3,500 total)