Viewing 15 posts - 226 through 240 (of 444 total)
Wat about the select list in the select statement. Are the columns fixed for one and both table search?
I have developed the sp for an interface with multiple controls on...
April 30, 2009 at 3:03 am
if IsNull(@ID,0) 0
Select ... where col = @ID
else
Select ...
April 30, 2009 at 2:26 am
Theatrical Release of Star Wars?
April 30, 2009 at 2:21 am
Nice well demonstrated article. Still alot of confusions in my mind that WHY to through this long procedure of creating project, adding query files (if talk about the example in...
April 30, 2009 at 2:17 am
From where to get the Notes / details of happenings of the Summit, if someone cannot attend.
April 30, 2009 at 2:01 am
Declare @aa numeric(10,2)
Set @aa = 1.60
Select case when @aa between cast(@aa as int) and cast(cast(cast(@aa as int) as varchar(10)) + '.25' as numeric(10,2)) then cast(cast(@aa as int) as numeric(10,2))
when @aa...
April 30, 2009 at 1:54 am
1. You SHOULD be able to insert data with or without Identity column.
Can you post the Insert statement?
2. To change the NON-Identity column to Identity column, go to the...
April 30, 2009 at 1:06 am
Both options are workable. I think OP would be a better person to decide if his/her requirement is met of not.
April 29, 2009 at 9:45 pm
Thats right. And thanks for pointing.
Also, '1d1' is a Numeric Value but generate error on conversion. The values are valid from '1d1' - '1d308' (if I am not wrong).
But it...
April 29, 2009 at 9:28 pm
You can duplicte records by Count(*)/ Group By or Row_Number.
But how will you find out the latest update in those duplicate records. Is there any UpdatedOnDateTime column in your tables?
April 29, 2009 at 5:46 am
if you are willing to ignore records with non-numeric value in MPANCORE,
try this
select *
from thangela.NpowerNorthern_v1 a
INNER JOIN EPPS.dbo.Customers b ON case when IsNumeric(b.MPANCORE) = 1 then b.MPANCORE else -1...
April 29, 2009 at 5:09 am
Server-side Profiler trace will be the best option.
check this for help...
April 29, 2009 at 4:59 am
As said by others, details required.
It will be better to avoid un-necessary indexes.
April 29, 2009 at 4:55 am
Viewing 15 posts - 226 through 240 (of 444 total)