Viewing 15 posts - 4,066 through 4,080 (of 26,490 total)
Easiest way to accomplish this is to make the column read only when doing updates. Obviously you need to be able to enter a value when initially creating an...
March 14, 2016 at 3:02 pm
Brandie Tarvin (3/14/2016)
Lynn Pettis (3/14/2016)
Shouldn't this have been your first stop before going online?someop (3/13/2016)
Thanks for your response. Actually, I got solution from my manager. Thanks for your support
Being fair,...
March 14, 2016 at 10:32 am
pietlinden (3/13/2016)
What I need to do is a sort based upon the birthdate, lang, and pernum.
Basically the sort for birthdate should meet the following criteria:
a. If a student is under...
March 14, 2016 at 9:37 am
Shouldn't this have been your first stop before going online?
someop (3/13/2016)
Thanks for your response. Actually, I got solution from my manager. Thanks for your support
March 14, 2016 at 9:31 am
stsivaraj (3/13/2016)
Thanks for your response. Actually, I got solution from my manager. Thanks for your support
Forum etiquette would have you post your solution for others to see as your solution...
March 14, 2016 at 9:29 am
Ed Wagner (3/12/2016)
MotivateMan1394 (3/11/2016)
And dear Lynn Pettis :
The big question here, is this something your employer is tasking you to accomplish or are you just trying to find...
March 14, 2016 at 9:22 am
Look at using a recursive CTE to walk through the hierarchy. If you need additional help please post the DDL (CREATE TABLE statement) for the table(s) involved, sample data...
March 11, 2016 at 12:44 pm
Why are your users even seeing the audit columns? They should not have the ability to insert or update these values. They should be hidden from the users....
March 9, 2016 at 1:35 pm
There may be a way to improve the process but it would require intimate knowledge of database to accomplish and would take significant effort. I was tasked with a...
March 9, 2016 at 11:19 am
This is my best guess with nothing to test it against.
select
sl1.smlPartID,
sum(case when sl1.smlCreatedDate >= DATEADD(month,-12,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0) ) and
...
March 9, 2016 at 10:43 am
This is the catch block I have in a stored procedure, does this help?
begin catch;
...
March 8, 2016 at 10:17 am
TheSQLGuru (3/3/2016)
It is confirmed here: https://msdn.microsoft.com/en-us/library/mt614935.aspx
Making it easier for others:
March 3, 2016 at 2:40 pm
TheSQLGuru (3/2/2016)
On SQL Server 2014 I would think this is a great use case for LAST_VALUE().
I don't think so since the OP only wants to see one row for each...
March 2, 2016 at 1:17 pm
This:
with basedata as (
select
rn = row_number() over (partition by id order by date_created desc),
id,
date_created,
amount
from
...
March 2, 2016 at 10:21 am
Steve Jones - SSC Editor (2/27/2016)
Lynn Pettis (2/26/2016)
Why do organizations believe that they will get more...
February 29, 2016 at 9:54 am
Viewing 15 posts - 4,066 through 4,080 (of 26,490 total)