Viewing 15 posts - 91 through 105 (of 5,503 total)
When you refer to a new fature of SQL2014 you might refer to the new server level permission "CONNECT ANY DATABASE" in combination with "VIEW SERVER STATE" and "DENY SELECT...
August 13, 2014 at 4:27 pm
You'll need to perform a second join to the members table:
select t.*, m1.lastname, m1.firstname, m2.lastname, m2.firstname
from tickets t
LEFT OUTER JOIN members m1 ON t.assigned_to = m1.member_id
LEFT OUTER JOIN...
August 13, 2014 at 10:44 am
TomThomson (8/13/2014)
August 13, 2014 at 9:59 am
Evil Kraig F (8/12/2014)
August 12, 2014 at 2:09 pm
With 70$/hr you're talking about roughly 140k/yr if you're a full time employee...
If that's your current situation, then the only alternative would be consulting.
Yes, you could make more per hour...
August 12, 2014 at 12:31 pm
nah - they probably want somebody to do both.
If that's the case, why isn't Oracle listed as a required qualification?
Or do you mean they're asking for a SQL Server expert...
August 12, 2014 at 10:28 am
That's weird:
RESPONSIBILITES:
Provide support to external clients on all aspects of Oracle Database Management, including but not limited to:...
and
QUALIFICATIONS: Highly experienced in Database design and Administration performing the following:
• Expert knowledge...
August 12, 2014 at 10:20 am
Not enough information.
What do you mean by "tallied"?
Any sample data (table def, sample data and expected result) available to demonstrate what you're looking for?
Based on your -rather vague- description I...
August 11, 2014 at 5:18 pm
What are you trying to accomplish here?
It looks like you return the running total balance per month an fiscal year.
Why would you worry about this FY having less than 12...
August 11, 2014 at 4:11 pm
Does the user "james" has the permission to connect to database "data"?
Or how do you handle the connection between the two databases (users and data)?
August 11, 2014 at 3:41 pm
For example, let's say I want to hide the "Microsoft's watermark" in this picture, can I use a second image?
Yes, you can use a second image: one that is officially...
August 11, 2014 at 11:06 am
You can't create views across database using the syntax you're thinking of.
Instead you could create a view on each database and use that in your view:
create view view1 as
use
select...
August 11, 2014 at 10:43 am
To expand on Lynns idea:
It might be an additional "feature" to set a minimum number of forum posts before being allowed to flag a thread.
While I do trust each of...
August 11, 2014 at 7:21 am
Sometimes it's essential to know what the application will do with the data.
Let's just assume a scenario where they would just filter out 10% of the data and throw the...
August 11, 2014 at 5:22 am
In your very first post you mentioned the result is used by people looking at it.
It's rather unusual to present 280k rows to a user...
So I need to ask: what...
August 11, 2014 at 4:40 am
Viewing 15 posts - 91 through 105 (of 5,503 total)