Viewing 15 posts - 91 through 105 (of 128 total)
i think i overlooked one common rule, i will be back soon, but you can still check it tough.
May 1, 2012 at 12:31 pm
Now you can just delete those employees.
May 1, 2012 at 12:28 pm
Hi buddies,
With the following script you can find the employees that violates the marital status changes common sense rules.
;WITH CivilStatus (StatusSequenceNumber,[Marital_Status])
AS
(
SELECT 1,'SINGLE' UNION
SELECT 2,'MARRIED' UNION
SELECT 3,'DIVORCED' UNION
SELECT 3,'WIDOWED'
),
PersonCivilStatus
AS
(
SELECT...
May 1, 2012 at 12:28 pm
I saw the article, is really cool, but i think our partner can't use FTS.
April 30, 2012 at 3:03 pm
Hi man,
This is just a guess.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.ComponentModel;
using System.Data.SqlTypes;
namespace ConvertToASCII
{
public static class ConvertStringToASCII
{
...
April 25, 2012 at 10:12 am
Hi,
I prepared the following steps of my solution, when i struggle to understand a query i break it down to the very fundation, then i add one thing at the...
April 25, 2012 at 8:21 am
ooh you are rigth, i haven't seen it that way.
April 24, 2012 at 2:02 pm
Hey, what's up !
It looks like you can only add until 95851 months to a date of the year 2012, because DateTime datatype can only hold 9999 years.
April 24, 2012 at 9:00 am
Hi, what do you think about this one?
-- A tally table is needed.
CREATE TABLE Numbers (Number INT)
INSERT INTO numbers
SELECT TOP 1000 row_number() OVER (
ORDER BY column_id
)
FROM sys.columns;
-- Number the...
April 24, 2012 at 8:25 am
You are rigth, it produces table scan.
April 17, 2012 at 10:44 am
That is why said maybe haha, i will check it out.
April 17, 2012 at 10:39 am
Viewing 15 posts - 91 through 105 (of 128 total)