Viewing 15 posts - 166 through 180 (of 389 total)
boehnc (9/17/2012)
i might need help with the diagnosis order/code statements in the where...
September 18, 2012 at 1:01 am
abhas (9/18/2012)
Hi Chris,I tried using CTE but not able to do.
Please post your query.
September 18, 2012 at 12:51 am
eh.shams (9/17/2012)
would you please be more specific , or let me know with example ?Thanks
e.g. in Source and Destination table CustID is unique number then we can have below query...
September 17, 2012 at 10:58 pm
ranganathanmca (9/17/2012)
How to design SSIS Package for my below requirement please share some idea's and view to achieve this problem
1. We are having 2 different servers like (LNEW8T8,LNEW3T3) same...
September 17, 2012 at 10:37 pm
boehnc (9/17/2012)
Patient.ID, Patient.Name, Patient.address, Patient.gender
1/Jim/123 elm/M
I have another table of patient diagnosis codes. It can have multiple dx codes...
September 17, 2012 at 10:22 pm
eh.shams (9/17/2012)
Customer Code|cslAccumulationInvoiceItmId|cslAccumulationInvoiceRef|cslDeliveryNoteRef|cslProductRef|Amount|RateCurrencyRate|price beforePriceInBaseCurrency|Deliver No|Date-Reci
4005604666346644285322121.54504807110873542.7810873542.78171691/10/2012 00:00
4005604665946644284882122.86504807111539888.0211539888.02171461/10/2012 00:00
4005603641436413192044717.6651923019169601.89169601.81095611/30/2011 00:00
4005603530535304181764724.12519230112523827.612523827.61036111/27/2011 00:00
4005609649096488846394722.2656800011264368012643680270828/8/2012 00:00
4005603531235304184654722.7519230111786521117865211054911/28/2011 00:00
______________________________________________
on the destination i have same table , with only add status (bit) column.
i...
September 17, 2012 at 10:16 pm
Grant Fritchey (9/17/2012)
rhythmk (9/17/2012)
Grant Fritchey (9/17/2012)
September 17, 2012 at 9:31 pm
Just found below article from Gail on the same 🙂
http://sqlinthewild.co.za/index.php/2010/01/12/in-vs-inner-join/
September 17, 2012 at 4:58 am
Grant Fritchey (9/17/2012)
September 17, 2012 at 4:56 am
Robin Sasson (9/17/2012)
Indexing and performance is a large topic in it's own right.
Too many indexes on a...
September 17, 2012 at 3:20 am
znkin (9/16/2012)
I need list of distinct CustId who have ordered both ProdId 1...
September 17, 2012 at 3:17 am
somanath_kolekar (9/17/2012)
Thanks for the response.
Yes. For validations I am using primary key. If the row with that primary key exist in table 1, I need to reject that record...
September 17, 2012 at 2:05 am
somanath_kolekar (9/17/2012)
I am beginner to writing stored procedure. So checking out your views on implementing below requirement:
I have one table containing data in one system. I want to write...
September 17, 2012 at 12:58 am
SQLSACT (9/17/2012)
Consider the following 2 tables
create table T1
(Col1 int, Col2 int)
go
create table T2
(Col3 int, Col4 int)
And the following query
select Col1, Col4 from T1,T2
What is actually happening when the select...
September 17, 2012 at 12:49 am
purushottam2 (9/16/2012)
SELECT 1 FROM ABC WHERE Id IN (SELECT Id FROM ABC1)
===================================================
SELECT 1 FROM ABC a JOIN ABC1 b ON a.Id =...
September 17, 2012 at 12:18 am
Viewing 15 posts - 166 through 180 (of 389 total)