Viewing 15 posts - 1,441 through 1,455 (of 3,489 total)
CREATE TABLE & INSERT scripts?
Feel free to explain more. I'm not sure I know how to determine what is approved.
Please read this and post again: http://www.sqlservercentral.com/articles/Best+Practices/61537/
August 15, 2017 at 7:02 pm
You need Jeff Moden's DelimitedSplit8K function for this...
DECLARE @MyString VARCHAR(200) = 'Department =''test'' AND Branch = ''Yankee'' AND city = ''Brooklyn'' AND State =...
August 15, 2017 at 1:04 pm
Neither. fn_CalculateNetPay is a function, and that's how you join a table to a table-valued function - by using APPLY
August 13, 2017 at 10:44 pm
sys.dm_exec_procedure_stats
does that.
August 3, 2017 at 4:03 pm
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
Viewing 15 posts - 1,441 through 1,455 (of 3,489 total)