Viewing 15 posts - 136 through 150 (of 898 total)
The article referenced in the editorial is just too good.
I was simply smiling through the article wondering how can an article be so accurate.
June 19, 2013 at 5:26 am
saurabh_goel_86 (6/19/2013)
Thanks for the assistance..
I need to import this and send it over to client.
A .csv format or excel format which ever would be suitable..
I was wondering which one...
June 19, 2013 at 3:58 am
There is a table which has entries coming to it every day. I need to check which all entries came on Monday.
Create a table with a column to store date...
June 19, 2013 at 3:49 am
Log shipping should be possible if the primary instance is of a lower version(say, SQL Server 2005) and the secondary instance is of a higher version(say, SQL Server 2008)
It will...
June 19, 2013 at 3:39 am
Sai Viswanath (6/19/2013)
One more doubt on partitioning.
- Do we need to have a primary key in the table which needs to be partitioned?
- Can I use a composite...
June 19, 2013 at 2:34 am
This should give you a start
SELECTMONTH,
SUM( CASE WHEN RN = 1 THEN MEASURE ELSE 0 END ) AS MEASURE1,
SUM( CASE WHEN RN = 2 THEN MEASURE ELSE 0 END )...
June 19, 2013 at 1:22 am
immaduddinahmed (6/18/2013)
yes your query is...
June 18, 2013 at 7:17 am
Arul prakash (6/18/2013)
select substring(ename,charindex(':',ename)+1,len(ename)) from empThe charindex start from "0".......:-)
Is your solution not the same as the one posted above yours?
June 18, 2013 at 7:14 am
immaduddinahmed (6/18/2013)
when convert(varchar(10),t.[Timein],108) >= convert(varchar(10),t4.ltime,108) and
spendtime is not null then 'LATE '
else '' end
+ case when (t4.minute- Time_Minutes) >= 120 then + 'HALF...
June 18, 2013 at 7:10 am
immaduddinahmed (6/18/2013)
Thanks i get it
Great. I am glad you got it yourself.
Anyways here is what I came up with
SELECTCASE
WHEN CONVERT(VARCHAR(10), t.[Timein], 108) >= CONVERT(VARCHAR(10), t4.ltime, 108) AND spendtime IS NOT...
June 18, 2013 at 7:03 am
immaduddinahmed (6/18/2013)
but it gives me like this
Remarks
LateHALFDAY
i want this
late / halfday
when only halfday remarks show this Halfday
and when late and halfday remark...
June 18, 2013 at 6:48 am
immaduddinahmed (6/18/2013)
how i can create a trigger
Its not possible to explain this in a forum post
Please check for articles on Google or Books Inline and I am sure you will...
June 18, 2013 at 6:44 am
ChrisM@Work (6/18/2013)
sagesmith (6/18/2013)
June 18, 2013 at 6:30 am
You will have to create 2 separate triggers on the 2 tables
Inside the trigger you can write the code to update the new table
June 18, 2013 at 5:57 am
Viewing 15 posts - 136 through 150 (of 898 total)