Viewing 15 posts - 76 through 90 (of 429 total)
ThomasRushton (5/13/2016)
Sean Lange (5/13/2016)
J Livingston SQL (5/12/2016)
And why is this a SQL2012 thread?
I imagine this thread was started here because the majority of the spam seems to be in this...
May 13, 2016 at 7:52 am
Hmm, maybe they could utilize the point system for this.
Add up the point total of everyone who reports a posting. If the point total is greater than some threshold,...
May 13, 2016 at 7:00 am
Eric M Russell (5/12/2016)
May 12, 2016 at 2:30 pm
The old-school way of doing this would involve nested queries and joining back to your table multiple times.
Windowed functions make this so much easier:
SELECT
[ID] = Coalesce(X.[Tech],'')+ Coalesce('-'+convert(nvarchar(30),max(X.[DOS]),120),''),
X.[Tech],
[DOS] =...
May 12, 2016 at 2:21 pm
I might be missing something, but couldn't this be done in a single query like so?
SELECT
*
FROM
#Employee Employee
FULL OUTER JOIN
#Class Class
ON
IsNull(Employee.[Emp_no.], '') = IsNull(Class.[Emp_no.], '')
ANDIsNull(Employee.Org_Code, '') = IsNull(Class.Org_Code, '')...
May 12, 2016 at 2:04 pm
Yea, very strange. I'm curious as to why it's an issue suddenly now?
Automatic suppression of posts reported as spam by a certain threshold number of users might help mitigate...
May 12, 2016 at 1:17 pm
Reported as spam.
May 10, 2016 at 7:08 am
Or, if you don't like the PIVOT clause, you could do something like this:
SELECT
Product,
Max(CASE Metric WHEN 'BHP' THEN MetricValue ELSE Null END) AS BHP,
Max(CASE Metric WHEN 'Torque' THEN...
May 10, 2016 at 6:57 am
The file system task does not support using wildcards, as it is designed to work with a specific file.
To work around this, you would typically use a ForEach loop. ...
May 9, 2016 at 11:17 am
I also have a daily job failure summary, that lists all job failures in the last 24 hours. This helps catch any jobs that failed without properly configured notification...
April 25, 2016 at 10:41 am
I created a secondary mail profile connected to a GMail account, and used that profile to send an email notification about any email errors that have occurred.
April 25, 2016 at 10:35 am
If you absolutely must have users dynamically adding 'fields' in a UI form, perhaps you would consider storing them in an attribute table rather than dynamically changing your table's structure?
Instead...
April 18, 2016 at 1:56 pm
If for some reason the data provider cannot add a sequence number to the data, you can use a Scrpt Component configured as a (synchronous) transform in your data flow...
April 8, 2016 at 7:27 am
I fully agree with others that this is a bad thing, and should not be done. Killing off a process can be dangerous and lead to headaches. If...
April 7, 2016 at 9:48 am
Viewing 15 posts - 76 through 90 (of 429 total)