Viewing 15 posts - 7,906 through 7,920 (of 15,381 total)
In order to help we will need a few things:
1. Sample DDL in the form of CREATE TABLE statements
2. Sample data in the form of INSERT INTO statements
3. Expected results...
June 19, 2013 at 12:15 pm
Chrissy321 (6/19/2013)
This worksSELECT
CONVERT(decimal(20,6),Column2)
FROM ....
WHERE column1 <> 'abc'
What about this?
This will likely throw the same error
select *
from
where column1 = 1
How about:
select *
from
where IsNumeric(Column1) = 0
June 19, 2013 at 12:14 pm
duplicate post. direct replies here. http://www.sqlservercentral.com/Forums/Topic1465263-391-1.aspx
June 19, 2013 at 9:58 am
tschary (6/18/2013)
i need to work on integration of key management.As per my knowledge we need use EKM and need to manage keys.for that we need additional hardware or appliance.
please help...
June 19, 2013 at 9:57 am
tschary (6/18/2013)
Hi,I need to implement user self services for administrative tasks.
if anybody worked on or working please provide me guidance.
Thanks,
Sreenivasa Chary.T
What does this mean?
June 19, 2013 at 9:56 am
tschary (6/18/2013)
Hi,I need to implement transport encoding.
if anybody worked on or working please provide me guidance.
Thanks,
Sreenivasa Chary.T
What is transport encoding? Are you talking about encrypting your datastream as it travels...
June 19, 2013 at 9:55 am
Karan Shah (6/19/2013)
I need to write a code in SQL Server 2008 in which I have 4 columns(First Name (2 columns) and Last Name (2 columns)).I have a 5th...
June 19, 2013 at 9:50 am
realvilla (6/19/2013)
June 19, 2013 at 9:48 am
realvilla (6/19/2013)
June 19, 2013 at 9:27 am
Simon Hardstaff (6/19/2013)
Thanks Sean your solution worked also
It was pretty much exactly the same as Cadavre's. He posted his while I was still typing. 😀
June 19, 2013 at 8:23 am
Pretty sparse on the details but I think that something like this should work:
((ROW_NUMBER() OVER (ORDER BY oddpages.id_num) - 1) / 8) + 1
June 19, 2013 at 8:19 am
SQLTestUser (6/18/2013)
Select C.CausativeID,F.Description,M.OverallPlan,S.Title, ST.Status
from Statement S left join Cause C on C.ID = S.ID
...
June 19, 2013 at 7:58 am
shashi_1409 (6/18/2013)
CommaColumn ...
June 18, 2013 at 3:32 pm
realvilla (6/18/2013)
Oh and by the way, this line has to be what replaced the top clause correct?
where v.RowNum <= r.UnitCount
Yes that is correct. Instead of getting the top we just...
June 18, 2013 at 2:17 pm
SQLTestUser (6/18/2013)
Thanks for the help i guess i just can not explain the process as i want, thank u for the help
The issue hear seems to be a language barrier....
June 18, 2013 at 2:16 pm
Viewing 15 posts - 7,906 through 7,920 (of 15,381 total)