Viewing 15 posts - 11,461 through 11,475 (of 26,486 total)
When you say push to a client application, can you be a bit more specific?
June 7, 2012 at 12:41 pm
SQL_path (6/7/2012)
Any ideas?? thanks
Well, since we can't see from here what you see there, not really. Maybe if you provided us with the DDL for the table, some sample...
June 7, 2012 at 12:38 pm
Other than all those double quotes (which I removed), I really don't see anything wrong with the code below:
UPDATE P SET
Stock = T.Stock
FROM
...
June 7, 2012 at 12:36 pm
Here is your code formatted:
SELECT i.IncidentIDRef
,(
row_Number() OVER (
PARTITION BY sc.PnxCodeValue
,a.IAREF# ORDER BY a.IAREF#
) + 2
) seqno
,'Type: ' + IATYPE + ' | Last Name: ' + IALNAM + ' First...
June 7, 2012 at 10:44 am
subahan_syed (6/7/2012)
Order# A has Collection of SKU's like below1
2
3
4
5
6
7
8
9
SKU's 4, 6 & 8 are to be identified out of the order A.
Hope I made it clear.
Nope. Have you read...
June 7, 2012 at 10:39 am
I'm thinking this is more what is needed:
USE [Sandbox] -- My playground, change as needed
GO
/****** Object: UserDefinedFunction [dbo].[itvfn_FormatTimeHHMMSS] Script Date: 06/07/2012 10:08:28 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER...
June 7, 2012 at 10:31 am
In your SSMS window, does it matter which is run first? Is there a batch separator between them?
June 7, 2012 at 10:07 am
Nidhi G (6/7/2012)
CHJUSDDN,App,LMA,2012-03-30 00:00:00.000,I/O,16.9,2012-05-25 18:31:29.323
CDGDFGD545E,App,LMA,2012-04-03 00:00:00.000,MEMORY,0.22,2012-05-25 18:31:29.323
CRFGFG12ZE,WEB,LMA,2012-04-30 00:00:00.000,ScanRate,0,2012-05-25 18:31:29.323
CDFGDRFDGD,App,ESN,2012-05-12 00:00:00.000,RUNTIME,0,2012-05-25 18:31:29.323
BGFGHJ676RF,SQL,LMA,2012-05-31 00:00:00.000,CPU,0.0426399999999989,2012-05-25 18:31:29.323
HHJUI878DFE,DB,POR,2012-06-01 00:00:00.000,DiskSPACE,164.8,2012-05-25 18:31:29.323
i NEED COUNTER_VAL IN 'MEMORY, I/O, CPU'
INSERT DDL:
INSERT INTO [EMDB].[dbo].[STG_CAP_HLI]
...
June 7, 2012 at 9:52 am
From Books Online. I simply went to the Index tab and entered database roles.
Members of the db_ddladmin fixed database role can run any Data Definition Language (DDL) command in...
June 7, 2012 at 9:47 am
Only thing that could be obvious is if the @ID2 is used in a way that would may the OUTER JOINs into INNER JOINs and there was no data that...
June 7, 2012 at 9:42 am
BrainDonor (6/7/2012)
And yet it would appear I'm not the first to miss that, from the hunting around through the world of Google.
And you've just made me realise - we...
June 7, 2012 at 9:38 am
Well, it is hard to help debug code when we can't see what you see.
June 7, 2012 at 9:36 am
I see where you use @ID1, but what about @ID2?
June 7, 2012 at 9:30 am
Interesting. I thought I would give you another alternative since you were only returning a single record (value).
I am posting your code plus the code I added. The...
June 7, 2012 at 9:21 am
Charmer (6/7/2012)
GSquared (6/7/2012)
June 7, 2012 at 9:10 am
Viewing 15 posts - 11,461 through 11,475 (of 26,486 total)