Viewing 15 posts - 10,516 through 10,530 (of 13,879 total)
I think he needs more than coffee - in fact, I think he had more than coffee ... And plenty of the stuFf too.
But, in the morning, he'll look...
August 17, 2012 at 10:12 am
anushamsbi (8/17/2012)
Hi,It is not working.. can u pls eloborate that one..
Rather than saying "it's not working", which is close to useless to us, please provide details of what you tried...
August 17, 2012 at 7:17 am
ChrisM@Work (8/17/2012)
Phil Parkin (8/17/2012)
SELECT ... INTO
always creates a new table. When it creates that table, uses the data types of the source columns, but not primary...
August 17, 2012 at 3:37 am
Nice work - thanks for posting back.
May I suggest that you consider using table aliases - it will make your query much more readable. Eg
select t.col1, t.col2 from tablewithaverylongnameindeedohyes t
--rather...
August 17, 2012 at 2:12 am
Missing something, I'm afraid.
SELECT ... INTO
always creates a new table. When it creates that table, uses the data types of the source columns, but not primary keys or identity...
August 17, 2012 at 1:12 am
Have a look in INFORMATION_SCHEMA.VIEW_COLUMN_USAGE for the view-related info - you may have to join that to another i_s view to get everything you want.
August 17, 2012 at 1:02 am
david.ostrander (8/16/2012)
I currently have an SSIS package being built where I want to upload rows from an excel document into a Recordset Destination in SSIS. What I'm having...
August 16, 2012 at 10:09 am
I'd like to nominate this as a candidate for the 'esoteric thread of 2012' award 🙂
August 16, 2012 at 6:44 am
erics44 (8/16/2012)
the output would be the same using sql or plsql
If you've been able to derive the question, why not go ahead and answer?
August 16, 2012 at 5:07 am
raghuldrag (8/16/2012)
i ve created on table create table rab(deptno number(33),
job varchar(22));
insert into rab ('22','clerk');
insert into rab ('25','manager');
insert into rab ('20','sales');
output:
deptno job
22 ...
August 16, 2012 at 4:28 am
It would be polite of you to answer mine and Anthony's questions - they are there for a reason: we are trying to understand your reasons for doing this, whether...
August 16, 2012 at 4:26 am
kishor.patgir (8/16/2012)
I have one table which have one field sr_no. in this field data up to 1.to ..100.
In this if i delete some record then sr_No not Maritain.
I want...
August 16, 2012 at 2:39 am
gayathri-b (8/15/2012)
Is there anything to do with teh DB2 settings like time out etc.,
From SSIS do I have to configure the...
August 15, 2012 at 9:52 am
Teee (8/15/2012)
I need to take the characters from the left before the '/' string and insert into a column and the characters on the right after the '/' string...
August 15, 2012 at 2:40 am
patrickmcginnis59 (8/14/2012)
Shadab Shah (8/12/2012)
Jeff Moden (8/10/2012)
Shadab Shah (8/9/2012)
I have come across various section on this website where it is mention that SQL Server is a set based programming language.
...
August 14, 2012 at 10:45 am
Viewing 15 posts - 10,516 through 10,530 (of 13,879 total)