Viewing 15 posts - 13,456 through 13,470 (of 15,381 total)
frdrckmitchell7 (11/28/2011)
November 28, 2011 at 8:43 am
pushpi2000 (11/27/2011)
I want to create views referring to invalid objects. The reason is that i don't have control on some, as of today, non-existing objects. How can i create such...
November 28, 2011 at 8:28 am
koolme_85 (11/28/2011)
i am trying 5 columns of data from 5 different tables into one table
So use the example I posted above.
select a.col1, b.col2, c.col3, d.cold4, e.col5, 'x', 'y', null, null
from...
November 28, 2011 at 8:09 am
SQL_By_Chance (11/28/2011)
Cause the client requirement is like that 🙂 .
How often do I hear this but in reality it is not that the client requires the data to be stored...
November 28, 2011 at 8:06 am
On both copies of your question people are asking for clarification. Remember we can't see your screen and have no knowledge of your project. The details you provided are simply...
November 28, 2011 at 7:54 am
EdA ROC (11/22/2011)
What you know is correct.
And, I learned something else, because simply substituting for the column name didn't work. I also had to remove the ORD_MACH_OPS (table)...
November 22, 2011 at 3:30 pm
From what you describe I don't think you need any kind of looping at all. You simply want to insert into a table some data when some conditions are met....
November 22, 2011 at 3:23 pm
Or take a look at ssc stairway series on indexes. http://www.sqlservercentral.com/stairway/72399/%5B/url%5D
This is a super set of articles that takes from the basics to pretty in depth stuff. Make sure...
November 22, 2011 at 8:12 am
You know looping is absolutely horrible for performance (and you have nested loops which is even worse). SQL is designed to work set based and not row by row. Given...
November 22, 2011 at 8:06 am
Update MyTable
set MobileNum = '91' + MobileNum
where left(MobileNum, 2) <> '91'
November 21, 2011 at 10:31 am
Tom Brown (11/21/2011)
Sean Lange (11/21/2011)
November 21, 2011 at 7:50 am
Of course if you don't want to spend the money for pressurized cookware you can just add salt. Pressure and salinity will increase the boiling temperature.
November 21, 2011 at 7:32 am
Dev (11/20/2011)
The actual discussion started here & the thumb rule here is NOT to use ORDER BY.Last 5 rows
http://www.sqlservercentral.com/Forums/Topic1206622-391-1.aspx
Actually there was a method presented that will work most...
November 21, 2011 at 7:23 am
psjrw (11/19/2011)
November 21, 2011 at 7:16 am
Here is an example query that will work and do what you are trying to do.
;with ReturnList (SomeValue)
as (
select 'rdwqyx41pe' union all
select 'reyewmf0wv' union all
select 'rjm6d08pmt' union all
select 'rlgv05xc40' union...
November 18, 2011 at 2:07 pm
Viewing 15 posts - 13,456 through 13,470 (of 15,381 total)