Viewing 15 posts - 421 through 435 (of 1,229 total)
Lowell (10/16/2012)
patelmohamad (10/16/2012)
This is my predication, not the actual data
, actual data is differ from my Example
in my data it gives me lot of no's 1,2,3.......n...
October 16, 2012 at 7:03 am
kwoznica (10/16/2012)
ChrisM@home (10/15/2012)[hr
Sure! Let's start with a function which has been tweaked a little more (less late at night);
I think you've probably figured out the rest.
Thanks Chris. That was very...
October 16, 2012 at 6:45 am
kwoznica (10/15/2012)
ChrisM would you mind walking me through to understand some parts of the iTvf?
Sure! Let's start with a function which has been tweaked a little more (less late at...
October 15, 2012 at 1:12 pm
deba_20032004 (10/15/2012)
I am in great trouble, my problem is I have a vendor Table
which consist of some fields. I explaining the structure below
Table<Vendor>
--------------
fields name
-----------
PKID int
VENDORID int
VENDORNAME ...
October 15, 2012 at 10:23 am
-- try this
select
MIDIRB,
IRBT.ID as IRBT_ID,
IRBT.IRBRATING as IRBT_IRBRATING,
ACRT.NEGWATCH as ACRT_NEGWATCH,
Newcolumn = case when ACRT.NEGWATCH = 1 then x.IRBRATING ELSE IRBT.IRBRATING end,
*
FROM ACRT
INNER JOIN IRBT
ON IRBT.MOODYSRATE = ACRT.MOODYSRATE
CROSS APPLY (
SELECT...
October 15, 2012 at 10:17 am
Jan Van der Eecken (10/15/2012)
Nice one, Tom! But does the TRY_CONVERT() make the query non-sargeable? Guess it would?
Good point, Jan. I remember recently Howard W posted evidence that CAST(Datetime AS...
October 15, 2012 at 10:05 am
Abu Dina (10/15/2012)
This is why I suggested he inserts a...
October 15, 2012 at 6:58 am
selvakumar.sms (10/15/2012)
i have stored procedure with 45 cursor, so the stored procedure taking long time to finish. is it possible to get running time...
October 15, 2012 at 6:37 am
selvakumar.sms (10/15/2012)
hi allthis is my small part if code, i dont know which cursor taking more time to consolidate the data.
Thanks for posting this. The...
October 15, 2012 at 6:24 am
yasubmj (10/11/2012)
We came across a problem today, no solutions yet, here is the scene, we have a query which uses an index and makes a key look up as...
October 15, 2012 at 5:39 am
selvakumar.sms (10/15/2012)
i have stored procedure with 45 cursor, so the stored procedure taking long time to finish. is it possible to get running time...
October 15, 2012 at 5:07 am
sql-programmers (10/15/2012)
Hi Dude,Instead of using CURSOR you can try WHILE loop like below example.
If possible dont use CURSORs in the procedure.
A well written forward-only readonly cursor will perform...
October 15, 2012 at 5:03 am
ronan.healy (10/15/2012)
update acrtset dbo.ACRT.MIDIRB = dbo.IRBT.IRBRATING
from acrt,IRBT
where dbo.IRBT.id = dbo.IRBT.id +1
and NEGWATCH = 1
It won't update any rows because dbo.IRBT.id will never equal dbo.IRBT.id +1.
Write it as a SELECT...
October 15, 2012 at 4:55 am
ecom.bigbuy (10/15/2012)
I have to display unstable column from database, that's why I need like that.Can you post sample dynamic SQL procedure?
What is an "unstable column"?
Dynamic SQL is covered in BOL...
October 15, 2012 at 3:04 am
thomasrichardson2000 (10/15/2012)
RepairSheetNr unitnr groupid brandId modelId version Type_Fleet close_date TotalModels TotalModelsInFleet
5000076 51 EDMN PEUGEOT 207 S 1.4...
October 15, 2012 at 2:58 am
Viewing 15 posts - 421 through 435 (of 1,229 total)