Viewing 15 posts - 16 through 30 (of 59 total)
Hello Jeff,
Your scripts is accurate.
INSERT INTO dbo.myInsertedMenu
(menuCollection_idx)
SELECT menuCollection_idx = ca.mixedID
FROM dbo.myMenuCollection mmc
CROSS APPLY (SELECT mmc.menuCollection_idx...
November 2, 2015 at 12:30 am
Owh. Did you have any article to - Create SQL Agent to re-process the Cube in Visual Studio?
August 5, 2015 at 11:08 pm
Hihi. This is my code
SELECT CVID, WorkExperience, Convert(varchar(10),WorkExperience / 12) +SPACE(1)+'years' + ' ' +
ISNULL(CAST(NULLIF([WorkExperience]%12,0) AS VARCHAR(2))+SPACE(1)+'months','') as WorkExperience_2
from
(
select CVID, sum(WorkExperience) as WorkExperience
from
(select CVID, WorkExperience =...
September 10, 2014 at 4:26 pm
Hello sir,
How about year? I cant imagine that
September 10, 2014 at 4:06 pm
This is the result after Update
CVID point_To_Scorescore
72 10 ...
August 23, 2014 at 11:48 am
Ok. This is my table
1- x_CV
CREATE TABLE [dbo].[x_CV](
[CVID] [int] NOT NULL,
[point_To_Score] [tinyint] NULL,
[score] [tinyint] NULL,
CONSTRAINT [PK_x_CV] PRIMARY KEY CLUSTERED
(
[CVID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,...
August 23, 2014 at 11:02 am
LutzM (8/23/2014)
Why would idx=34 get a score of 10?
It would be a lot easier if the data where in normalized form instead of a separated...
August 23, 2014 at 10:00 am
LutzM (8/23/2014)
Your description is rather vague...
For instance, what do you mean by
Where idx=34, Numeric in ApplyJob (3) EXIST in r_ApplyJob --> SET score=10
??
For that idx...
August 23, 2014 at 9:33 am
Dear Mr Higgam,
You're helping me sir. Thanks to you. But no thanks to other one.
August 18, 2014 at 10:42 am
g.britton (8/17/2014)
August 17, 2014 at 6:34 pm
g.britton (8/17/2014)
questions:1. are you checking in your application first? (why send bad data to SQL?)
2. What have you tried so far (you need to make some effort here.)
I'm a SQL...
August 17, 2014 at 5:17 pm
I consider input from Mr Sean Lange and Mr ScottPletcher. So, here it is..
1- This is my Job Notice / Job Vacancy table
*JobNoticeID is a primary key
2- This is Job...
August 13, 2014 at 8:21 pm
Sean Lange (8/13/2014)
August 13, 2014 at 8:33 am
Viewing 15 posts - 16 through 30 (of 59 total)