Viewing 6 posts - 16 through 21 (of 21 total)
Why not use a computed column:
create table #t1
(
eno char(2)
,enoUpper as Upper(eno)
)
Buzz
March 26, 2009 at 5:39 am
select * from sys.tables
Buzz
March 26, 2009 at 5:24 am
From the expected results, it looks like you want to retain status changes and not delete duplicates
Buzz
March 25, 2009 at 7:19 am
From the expected results, it looks like you want to retain status changes and not delete duplicates
Buzz
March 25, 2009 at 7:18 am
select right('00' + cast(month(getdate()) as varchar), 2)
is a little shorter
MRB
March 11, 2009 at 7:25 am
For a once only export use SQL Server Import and Export Wizard:
Right Click on the Database then:
Tasks->
Export Data->
Next->
Data Source = PRINCE ->
Next->
Destination = Microsoft Excel; Excel File Path =...
February 20, 2009 at 3:37 am
Viewing 6 posts - 16 through 21 (of 21 total)