Viewing 15 posts - 8,506 through 8,520 (of 15,381 total)
Nilesh-788004 (4/26/2013)
Both Procedures have @year as parameter and if no parameters passed take the current year as an input parameter.
Procedure B...
April 26, 2013 at 2:32 pm
SQLCrazyCertified (4/26/2013)
Sean Lange (4/26/2013)
SQLCrazyCertified (4/26/2013)
April 26, 2013 at 2:28 pm
You should be able to add a constraint to WagesEntryNew so that any new data that will be inserted/updated will be subject to meeting the criteria of the constraint.
Something along...
April 26, 2013 at 2:10 pm
SQLCrazyCertified (4/26/2013)
April 26, 2013 at 1:58 pm
faheemahmad14 (4/26/2013)
April 26, 2013 at 1:40 pm
As you said normalization would be the best approach but you can accomplish with something like this:
create table CPU
(
chip1 int,
chip2 int,
chip3 int,
chip4 int
)
alter table CPU
add constraint CPU_DupeCheck CHECK
(
chip1 <>...
April 26, 2013 at 1:13 pm
john.p.lantz (4/26/2013)
April 26, 2013 at 1:08 pm
jdbrown239 (4/26/2013)
You guys were right about the 'Where' clause being the issue. I added a few indexes to the table to increase performance and went back to a suggested 'where'...
April 26, 2013 at 9:55 am
rayh 98086 (4/26/2013)
Thank you, got it working now. =)
You're welcome. Glad that worked for you.
April 26, 2013 at 8:53 am
rayh 98086 (4/25/2013)
I am trying to pull a return a single value from a stored procedure, but cannot seem to find the correct logic.
Can someone share with me help me...
April 26, 2013 at 8:07 am
abhas (4/26/2013)
I want to search student information depending upon the passing either values of firstname,lastname,email. My requirement is even if I entered first 3 characters then the information of student...
April 26, 2013 at 7:49 am
jdbrown239 (4/25/2013)
I did read the article but the query involves joins on four tables along with converting XML data. Unfortunately I can't figure out an easy way to provide a...
April 26, 2013 at 7:32 am
carsten.crystaldive (4/25/2013)
April 26, 2013 at 7:27 am
You can do this with a tally table too.
declare @min-2 int = 1, @max-2 int = 100, @NumParts int = 5
select ((N * (@Max - @min-2) / @NumParts) + 1)...
April 25, 2013 at 4:06 pm
Sorry it took me a bit to get back to this. I am trying to figure out the relationship between these tables and am a bit lost.
You didn't identify how...
April 25, 2013 at 2:43 pm
Viewing 15 posts - 8,506 through 8,520 (of 15,381 total)