Viewing 15 posts - 1,381 through 1,395 (of 8,731 total)
"I can see only one way to do this"
...
April 13, 2017 at 1:46 pm
This is additional work, but I noticed it today.
You can apply filters to avoid this problem.
April 13, 2017 at 11:11 am
April 13, 2017 at 10:51 am
OMG, don't use strings. SSRS parameters have 2 properties: value and label. Value should be a date/time data type, while label can be a string representation of that value and...
April 13, 2017 at 10:29 am
April 13, 2017 at 9:09 am
I am trying to convert this date format "11-APR-2016 11:24:36.000000" in derived column in...
April 13, 2017 at 7:07 am
I need to represent the above table in this way in a select statement.
Any number...
April 12, 2017 at 2:22 pm
Here's a version that doesn't use a loop.
DECLARE @recipientsX varchar(150)
,@copy_recipientsX varchar(150)
,@blind_copy_recipientsX varchar(150)
,@SubjectLineX varchar(150)
,@attachmX1...
April 11, 2017 at 12:08 pm
April 11, 2017 at 10:55 am
I installed SQL Server 2016 express but i am unable to see Management studio....
April 11, 2017 at 7:07 am
This method is slower but doesn't depend on sequential data, just on the PartyID being unique.
WITH cteParties AS(
SELECT *, ROW_NUMBER() OVER(ORDER BY PartyID) pid
April 10, 2017 at 7:45 am
Thanks for the response.
There are about 16,000 to 20,000 rows in the data set in...
April 7, 2017 at 8:27 pm
Viewing 15 posts - 1,381 through 1,395 (of 8,731 total)