Viewing 15 posts - 1 through 15 (of 21 total)
Try out this.
Select '2' 'orderfield', field1, Field2 from table1
union
Select '1' 'orderfield', field3, Field4 from table2
order by orderfield, <field> you want to order by
You could think of re-writing your query...
October 12, 2003 at 10:42 pm
Could you explain the way (the logic)you are sending emails?
October 12, 2003 at 10:32 pm
I am sure you would have taken care of this of changing the connection string so that it points to the production server.
Secondly is the Web Server and SQL...
October 9, 2003 at 1:57 am
This is DeMorgan's law....
Not(A or B) = Not(A) and Not(B)
Not(A and B) = Not(A) or Not(B)
Not(Not(A)) = A
Where A & B are Statements
October 9, 2003 at 1:49 am
Please refer the Collations, Overview section of BOL. It describes the Collation concept in detail. Check on the collation of ur 7.0 instance and 2000 instance.
October 8, 2003 at 8:20 am
How are you migrating the data to the new DB. DTS packages / DTS Export Option / Others?
October 8, 2003 at 5:06 am
This is something that I myself have been trying for quite some time. I don't think there is a way out. The "result set" defies the RDBMS concepts.
October 8, 2003 at 3:22 am
quote:
As long as none of the courses will ever extend more than 255 days, you could use SQL Server's built-in Numbers table:SELECT...
October 6, 2003 at 6:24 am
The same query is answered in the TSQL section
October 6, 2003 at 2:51 am
do you have the bandwidth to use DTS packages? If yes you could create the sequence required before loading the data into the destination table.
Thanks
Lucas
October 6, 2003 at 1:33 am
First you need to create a table(could be a temp table - based on your requirement). This table(with atleast one field "dates") needs to contain all the dates for the...
October 6, 2003 at 1:26 am
Try this...
unceck the the "use fast load" check box in the transformation properties-->option tab.
October 1, 2003 at 4:01 am
This is an option that you could look at. Create the master table "Properties" with the comon attirbutes of all property types. Then create n number of specialized tables like...
September 30, 2003 at 11:55 pm
Just to have a clear picture of your query. Do you want a transpose of your result set? Thatis converting your rows to columns and vice versa. In that case...
September 29, 2003 at 6:13 am
How do you represent th data in your database for events like "Management meeting every Monday"? Do you have a record for each occurrence or do you have a flag...
September 29, 2003 at 6:00 am
Viewing 15 posts - 1 through 15 (of 21 total)