Viewing 15 posts - 331 through 345 (of 2,893 total)
Luis Cazares (6/28/2013)
Eugene Elutin (6/28/2013)
We don't order INSERTS, we order SELECTS.
Until we have identity and we want to populate it in a specific order...
Or want to do a clustered insert...
June 28, 2013 at 10:23 am
SQL_Learning (6/28/2013)
I have imported data into a database from an excel file and some of the columns contain values are like (392.03), (2.25),...
June 28, 2013 at 10:10 am
We don't order INSERTS, we order SELECTS.
Until we have identity and we want to populate it in a specific order...
June 28, 2013 at 9:53 am
suresh0534 (6/25/2013)
I have passed nearly 550 cities to search condition.
when i passed the 550 cities and run the...
June 28, 2013 at 9:39 am
you need to use FULL OUTER JOIN
SELECT ISNULL(t1.name, t2.name) AS name
,t1.JANclient
,t2.FRBClient
FROM ...
June 28, 2013 at 9:25 am
You cannot convert "any kind" of binary file into text file.
Binary file may contain any type of data in any format.
June 21, 2013 at 8:58 am
What binary file?
June 21, 2013 at 8:14 am
The best way to present such question would be with bigger example of required output.
If I understood you correctly your final table should have 6 columns...
So, may be that:
;WITH vals
AS
(
SELECT...
June 21, 2013 at 8:04 am
Tara-1044200 (6/11/2013)
I want to do this.select count(*) from
(
select col1,col2,......col18 from REVemployee.tbemp
group by col1,col2,......col18 HAVING COUNT(*)>1
)a
is there a better way of doing the same for better proformance?
Looks fine to...
June 12, 2013 at 3:00 am
GilaMonster (6/11/2013)
Eugene Elutin (6/11/2013)
I will be very brave to disagree with Gail on this one. But...There are such thing as a "nested transaction" in MS SQL Server.
There are no...
June 12, 2013 at 2:52 am
I will be very brave to disagree with Gail on this one. But...
There are such thing as a "nested transaction" in MS SQL Server. They just are not what...
June 11, 2013 at 7:43 am
Do not need in dopuble posting!
Your starting point might be here:
http://msdn.microsoft.com/en-US/library/ms170208(v=sql.110).aspx
June 11, 2013 at 6:09 am
Zeev Kazhdan (6/11/2013)
In terms of auditing we thought as well that SQL is better, but the customer insists they do better auditing within their 4G application.
Thanks...
June 11, 2013 at 3:49 am
tshad (6/7/2013)
June 11, 2013 at 3:12 am
DataAroma (6/11/2013)
BEGIN
if
call testRecur();
end if;
select...
June 11, 2013 at 3:08 am
Viewing 15 posts - 331 through 345 (of 2,893 total)