Viewing 15 posts - 4,696 through 4,710 (of 6,036 total)
If you cannot make inner join to the table where all your data stored then what do you want to work with?
_____________
Code for TallyGenerator
December 5, 2006 at 9:01 pm
Update r --GE_ReservesFile
Set ClaimNumber = c.ClaimNumber,
LastName = c.LastName,
FirstName = c.FirstName,
LossDate = c.LossDate,
InClaimFile = 1
From GE_Claim c
Inner Join GE_ReservesFile r ...
Utherwise you update not the...
_____________
Code for TallyGenerator
December 5, 2006 at 7:00 pm
December 5, 2006 at 5:36 pm
select REPLACE(STR(5, 2), ' ', '0')
"5" is a result of your DATEPART function.
_____________
Code for TallyGenerator
December 5, 2006 at 5:35 pm
December 5, 2006 at 2:13 pm
This will appear only when you run an SP from QA:
IF APP_NAME() = 'SQL Query Analyzer'
PRINT 'whatever'
_____________
Code for TallyGenerator
December 5, 2006 at 2:01 pm
1) INNER JOIN tables ON " three have a match "
2) WHERE DateAdd(yyyy, 10, EffectiveDate) < LossDate
_____________
Code for TallyGenerator
December 5, 2006 at 1:54 pm
What's stopping you from debugging the code without encapsulating it into UDF?
Do it in QA first, test performance, check execution plan, and when you are absolutely happy with it add...
_____________
Code for TallyGenerator
December 5, 2006 at 1:50 pm
When you have 2 remote tables in the same query you copy both tables to the temporary location. You copy entire tables.
Than you process the query not having any indexes...
_____________
Code for TallyGenerator
December 5, 2006 at 4:45 am
declare @tm int
set @tm = 181533
select dateadd(hh, @tm/10000, 0)+dateadd(n, @tm/100-(@tm/10000)*100, 0)+dateadd(ss, @tm-(@tm/100)*100, 0)
_____________
Code for TallyGenerator
December 4, 2006 at 11:23 pm
December 4, 2006 at 5:17 pm
1. Don't use remote queries. At least avoid them if posible.
Use OPENQUERY.
2. Don't use remote query in subquery. Just don't do this. Ever.
Unless you use to teach students in University...
_____________
Code for TallyGenerator
December 4, 2006 at 2:22 pm
set @filename = 'BULK INSERT #textfile FROM ''D:\websites\neolane\www\Import\mvt_' + convert _____________
Code for TallyGenerator
December 4, 2006 at 4:48 am
Procedure is just procedure. Do you know the meaning of this word?
It's not a table, not any other type of object.
What would you say about developer who's trying to use...
_____________
Code for TallyGenerator
December 3, 2006 at 2:18 pm
Same phone number will be dialed (that means appeared for the user) in different ways from different locations.
Unless you mean to limit usage of your application to a single town you...
_____________
Code for TallyGenerator
November 30, 2006 at 11:21 pm
Viewing 15 posts - 4,696 through 4,710 (of 6,036 total)