Viewing 15 posts - 8,746 through 8,760 (of 59,091 total)
You should ask Ola. 😉 He wrote it.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 31, 2019 at 3:23 am
What is the "Buddy Program"? Sharing a hotel room?
--Jeff Moden
Change is inevitable... Change for the better is not.
August 31, 2019 at 3:22 am
Hello
I'm working on programm for presence control
e.g
ID - CheckIn - CheckOut
1 29/08/2019 10:00 -- 29/08/2019 14:00
2 29/08/2019 22:00 -- 30/08/2019 06:00
3 30/08/2019 10:00 -- 30/08/2019 14:00
If i do a query...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 31, 2019 at 3:21 am
Really good article that covered a whole lot. The high point is how managers want everything but don't want to pay anything. I also believe that capital expenditures shouldn't be...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 31, 2019 at 3:16 am
Did you know that a table must have a key by definition? It is not an option!
Actually, it IS an option. HEAPs work just fine for things like Audit...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 31, 2019 at 2:51 am
>> I want to have a sum of the item count reset to 0 when the sum >= 6. <<
Did you know that a table must have a key...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 31, 2019 at 2:32 am
my guess is that your table should look something like this:
CREATE TABLE Personnel
(employee_id CHAR(5) NOT NULL PRIMARY KEY,
employee_type CHAR(1) NOT NULL
CHECK (employee_type IN (???),,
employee_name VARCHAR(30) NOT NULL);...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 31, 2019 at 2:24 am
I hope you understand that the old Sybase IDENTITY table property (property -- it is not a column) can never by definition be a valid key. It is a...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 31, 2019 at 2:06 am
Microsoft actually does make a distinction between "System Base Tables" and "System Tables". Please see the articles at the following links for more information...
There are also "System Views"...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 31, 2019 at 1:56 am
IMHO, the closest thing to a CROSS APPLY is a "Correlated Sub-Query" with an implicit join, which can return more than one row per input row if you're...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 30, 2019 at 1:29 pm
It would appear that the OP has flown the coop instead of answering the question I posed.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 30, 2019 at 4:19 am
IMHO, the closest thing to a CROSS APPLY is a "Correlated Sub-Query" with an implicit join, which can return more than one row per input row if you're not careful...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 30, 2019 at 4:14 am
When job hunting, I'm point blank with potential employers or recruiters about what my current salary is. The way I see it, if either party can't match the expectations...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 29, 2019 at 1:44 pm
There are awesome people on this site. There are also some not so awesome people on this site, and heck maybe I'm not one of the awesome people on...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 29, 2019 at 12:59 pm
It will vary depending on what the CU is and does. If the documentation for the CU doesn't contain that information, then there's no way to predetermine it.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 29, 2019 at 12:40 pm
Viewing 15 posts - 8,746 through 8,760 (of 59,091 total)