Viewing 15 posts - 226 through 240 (of 5,503 total)
Greg Edwards-268690 (4/22/2014)
...Note to self -
Filet - A - Dev is not something you want to experience.
Always follow company standards.
Why not? It'll be a once-in-a-lifetime experience 😛
April 22, 2014 at 2:34 pm
May I ask for the table definition involved?
You provided a view definition. But we'd need the table def. Especially for [ExtOLSMachine].
April 22, 2014 at 2:30 pm
Wow!
The script name have nothing to identify the table in question.
You really like to provide puzzles, do you?
Also, please provide the code of DML.GetRetailOrOnlineIndicator(), which seems to be a function...
April 22, 2014 at 2:06 pm
How are we supposed to know?
You didn't bother to mention where the columns you're referring to (Username/pw) are stored.
So my guess is: You don't need to join any tables at...
April 22, 2014 at 1:34 pm
April 22, 2014 at 11:05 am
lnardozi 61862 (4/22/2014)
April 22, 2014 at 10:41 am
A concept where a new row requires an update of (almost) all current rows in a table is questionable in terms of the relational theory.
Taking this aside: what would you...
April 22, 2014 at 6:16 am
Here's something to start with.
It's based on the gaps'n'island concept.
;
WITH cte AS
(
SELECT
*,
ROW_NUMBER() OVER(PARTITION BY employee_id ORDER BY effective_date) as pos1,
ROW_NUMBER() OVER(PARTITION BY employee_id,employee_dept ORDER BY effective_date) as pos2
FROM mytbl
)
SELECT...
April 21, 2014 at 1:41 pm
April 21, 2014 at 11:12 am
If it's client based, how do you plan to expand your software
so that my clients can input data from any where
?
That's contradictory to your client based installation.
At this point I...
April 21, 2014 at 11:02 am
As to my understanding the SQL SERVER CAL licensing model is not based on concurrend users but on named unsers/instances.
Those 5 CAL's are used either by 5 different logins or...
April 21, 2014 at 10:53 am
paulo.morgado (4/21/2014)
Looks like my data is in some strange collation that I can't find out what it is, and that is my problem.Sorry to have wasted your time.
There's no time...
April 21, 2014 at 8:47 am
here's the approach I came up with returning exactly the rows you requested.
Depending on the original data size it might be better to store the results of cte_production_slots in an...
April 21, 2014 at 8:34 am
Viewing 15 posts - 226 through 240 (of 5,503 total)