Viewing 15 posts - 1,111 through 1,125 (of 1,957 total)
Does this help ?
--===== This shreds the XML by extracting each "DueDate" node (SomeXml.nodes)
--===== Then pullng the data from the Payee Node which is found by navigating
--===== to the...
November 8, 2012 at 4:55 pm
Extract the data, send it to a web developer, get them to change it, import it back in ?
November 8, 2012 at 5:54 am
Your parameter is called @TVP but you are using the local variable instead in the code....
@TVP testType READONLY
AS
DECLARE @ParametersTVP AS testType
...
SET @Parameter = (SELECT Parameter FROM @ParametersTVP WHERE ParameterType =...
November 7, 2012 at 6:13 pm
Your literals are causing it, cast them to varchar(MAX)
November 7, 2012 at 6:10 pm
It's not entirely clear what you want, but I think you are after selecting the "best" version of each delivery address, where "best" means it has a postcode.
So, use a...
November 7, 2012 at 5:43 am
And more questions....
Have you checked the port the instance is listening on ?
- even though it is the default instance, it could be on a port other than 1433.
Have you...
October 29, 2012 at 2:45 pm
is your client machine a member the same domain as the server?
can you connect using the name if you specifiy tcp/ip in the advanced connection settings?
are you logged in to...
October 28, 2012 at 2:53 am
Sorry: didn't spot how old this was....
October 26, 2012 at 4:22 am
;with data as
(
select 'klsjadlkj ads891 3y1kjnd al k 22/31/2012 lk;adk asl;k das#' as things
union all
select 'k 11/1/2012 dk asl;k das#' as things
union all
select...
October 15, 2012 at 3:25 pm
L' Eomot Inversé (10/15/2012)
mister.magoo (10/15/2012)
October 15, 2012 at 3:14 pm
Jan Van der Eecken (10/15/2012)
Nice one, Tom! But does the TRY_CONVERT() make the query non-sargeable? Guess it would?
Yes it does...
Type conversion in expression (TRY_CAST([test].[field1] AS smallint)) may affect "SeekPlan"...
October 15, 2012 at 10:36 am
Here is my sample data creation: 10,000,000 + rows in tempdb - you may want to put it somewhere else...it's about 1GB of data.
Oh, and it relies on a TALLY...
October 12, 2012 at 6:32 pm
Hi, I am going to post a test script so we can be sure we are comparing apples with apples...
October 12, 2012 at 11:36 am
haiao2000 (10/11/2012)
1) get all...
October 11, 2012 at 6:07 pm
Put this expression in the "Hidden" attribute of the table you do not want to export:
=iif(TRIM(Globals!RenderFormat.Name)="EXCEL",True,False)
October 11, 2012 at 3:42 pm
Viewing 15 posts - 1,111 through 1,125 (of 1,957 total)