Viewing 15 posts - 2,236 through 2,250 (of 6,679 total)
Use CONCAT and plus:
Declare @val1 varchar(10) = 'abc'
, @val2 varchar(10) = 'def'
, @val3 varchar(10) =...
July 9, 2019 at 7:28 pm
You can rebuild a heap table using ALTER TABLE ... REBUILD;
Also check the amount of space used by your heap tables - I suspect these tables are constantly deleted and...
July 5, 2019 at 4:19 pm
I don't understand why you drop compression before a load process - can you explain why that is necessary? I also do not see any advantage to removing constraints -...
July 4, 2019 at 3:36 pm
I have not had to access MySQL from SSRS - but I have accessed Intersystems Cache, Vertica and other database products. The requirements are all related to how that products...
July 3, 2019 at 6:14 pm
Ah, OK. I believe I understand what you're saying now. Before I implement that, though, I've got to mention that one of my coworkers was with me, discussing this...
July 2, 2019 at 10:15 pm
You are making this much more difficult than it really is...you create the dataset from an expression, you do not include any parameters on the dataset because they are included...
July 2, 2019 at 6:48 pm
Thank for providing a scenario. To follow on, a procedure that lives on DatabaseA and references DatabaseA and DatabaseB, which are restored as DatabaseA_20190702 and DatabaseB_20190702, would have a...
July 2, 2019 at 6:33 pm
It looks like COMPUTE is returning multiple result sets - and ROLLUP and GROUPING SETS will not reproduce those same results. Either will return a single result set with the...
July 2, 2019 at 5:42 pm
You can have some interesting things happen to script components that are upgraded to a later version - and then attempted to download to an earlier version. The version in...
July 2, 2019 at 5:26 pm
Here is another way: right(cast(@ssn As char(11)), 4)
For SSN - you should either set the column length to CHAR(11) or CHAR(9) and enforce the format...with or without dashes. That can...
July 1, 2019 at 5:33 pm
Check how the linked server is setup and configured - there is a problem with the configuration and is not allowing you to connect.
June 30, 2019 at 3:11 pm
Thanks, DinoRS. That's kind of what I expected. I suggested the upgrade-in-place option, since it is a cluster and if things went south we could make the 2012 node...
June 29, 2019 at 3:05 pm
Click on the Fx button and build your expression - something like this:
="call imb_closure.getCases('" & Parameters!Parameter1.Value & "','" & Parameters!Parameter2.Value & "')"
Add all of the expected parameters in the same...
June 28, 2019 at 6:51 pm
Build the call as an expression - instead of trying to pass parameters. Look here: https://stackoverflow.com/questions/16351363/ssrs-mysql-stored-procedure-with-parameters-through-odbc
June 27, 2019 at 10:19 pm
You are correct - the proxy account would not work for T-SQL agent jobs.
June 27, 2019 at 6:21 pm
Viewing 15 posts - 2,236 through 2,250 (of 6,679 total)