Viewing 15 posts - 541 through 555 (of 3,348 total)
J Livingston SQL (4/6/2016)
April 6, 2016 at 1:02 pm
Hard to troubleshoot without accessing your instances and drilling down step by step, but here is my wild guess. Did you change/create routes on both instances to point to the...
April 6, 2016 at 12:53 pm
MadAdmin (4/5/2016)
select title, userid, users.name, manager,
manager.name managername, hrid, hr.name hrname
from @employee employee
inner join @user users on employee.userid...
April 6, 2016 at 12:49 pm
MadAdmin (4/5/2016)
Ed Wagner (4/2/2016)
If these were physical tables, I'd...
April 5, 2016 at 4:04 am
R.P.Rozema (4/5/2016)
Hugo Kornelis (4/2/2016)
Lowell (3/31/2016)
--RxClaims.prescriberId LIKE '[a-zA-Z][a-zA-Z]%' --case sensitive collation
I think that would be for a binary collation. For case-sensitive collations, it would be either LIKE '[a-Z][a-Z]%', or LIKE '[A-z][A-z]%'...
April 5, 2016 at 3:43 am
pbo71465 (4/3/2016)
I'm just looking for the logic to count patterns of action in a sequence.
If you're not aware of any, then thanks for your contribution.
I'm thinking someone has come...
April 3, 2016 at 9:49 pm
You are repeating the question, but you are not giving the additional information we need. Without the CREATE TABLE and INSERT statements plus expected results I requested, I cannot help...
April 3, 2016 at 2:27 pm
Okay, and here is the post I wanted to make in this topic.
Apologies for not replying sooner. I have been on the road for a few days, traveling to and...
April 3, 2016 at 8:07 am
Hi Patrick,
Here's my original requests for row constructors. The request focuses on updates, and it has a comment by Itzik Ben-Gan that adds a lot of useful cases for row...
April 3, 2016 at 6:22 am
EDIT:
Sorry, that's what you get for using multiple windows. I posted the text intended for another topic here. Apologies.
April 3, 2016 at 6:20 am
As others have already said, there is no way to guarantee execution order, so there are three answers that are "sort of" correct (0,0 / 1,1 / 2,2 - the...
April 3, 2016 at 3:17 am
Do you already have an existing database, or are you now looking at how best to design the database?
If you already have the database and cannot change the design, then...
April 3, 2016 at 2:55 am
ffarouqi (4/2/2016)
Hugo Kornelis (4/2/2016)
April 3, 2016 at 2:46 am
sqlbaby2 (4/2/2016)
select title,userid,users.name,manager,manager.name managername,hrid,hr.name hrname
from employee inner join users on
userid = users.id inner join users manager on
manager = manager.id inner join users hr on
hrid = hr.id
But...
April 3, 2016 at 2:42 am
This sounds like a homework assignment so I will give you a few pointers but not a full solution. If you can show what you already have, I can provide...
April 2, 2016 at 10:39 am
Viewing 15 posts - 541 through 555 (of 3,348 total)