Viewing 15 posts - 6,556 through 6,570 (of 8,753 total)
Evil Kraig F (11/17/2014)
Eirikur Eiriksson (11/17/2014)
November 17, 2014 at 2:57 pm
Quick suggestions, open the package in a text editor and search for the variable name, there should only be one deceleration with that name but you might find another with...
November 17, 2014 at 2:40 pm
Quick thought, don't use the traversing // if the position of the element is known, far more expensive than the direct reference.
😎
SELECT
x.item.value('@CLM_ID', 'NVARCHAR(max)') AS CODE
FROM @x.nodes('CLAIM/INPUT/HEADER') AS x(item)
November 17, 2014 at 2:35 pm
Steve Jones - SSC Editor (11/17/2014)
After my deletion of this thread a few weeks back, I'm nervous about granting this.
That kind of summarizes it doesn't it? If there was an...
November 17, 2014 at 12:23 pm
November 17, 2014 at 10:29 am
balasaukri (11/17/2014)
It says, Database Mirroring is not supported by ODBC 11.0Please refer the link http://technet.microsoft.com/en-us/library/hh568445(v=sql.110).aspx
Then my suggestion is to check out EasySoft's odbc driver
😎
November 17, 2014 at 10:26 am
Guess you are on RHEL 6 given your kernel version;-), check this out "Microsoft ODBC Driver 11 for SQL Server on Linux"
😎
November 17, 2014 at 9:57 am
balasaukri (11/17/2014)
Linux 2.6.32ODBC 2.3.0
Which distribution (RedHat, Suse, Ubuntu etc.)?
😎
November 17, 2014 at 9:52 am
balasaukri (11/17/2014)
Recently we migrated a database to SQL Server 2012 version and configured mirroring on it as per the requirement by the client. One of a client's application is running...
November 17, 2014 at 9:18 am
kriskumark96 (11/17/2014)
I have 3 different queries with 3 different where conditions ,then i want to get all those 3 columns displayed as a single table output.
Ex
Select col1, col2 from...
November 17, 2014 at 7:47 am
Raghunathan (11/17/2014)
based on the above data i want to generate a report as
MACHINEDATE
...
November 17, 2014 at 3:58 am
Guitar_player (11/17/2014)
I am kind of in Confusion in some simple logic i believe , so i need the help of you all .
My requirement is...
November 17, 2014 at 3:35 am
Quick solution using dynamic cross-tab
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID('dbo.TBL_SAMPLE_PRODUCTS') IS NOT NULL DROP TABLE dbo.TBL_SAMPLE_PRODUCTS;
CREATE TABLE dbo.TBL_SAMPLE_PRODUCTS
(
[Product Name] VARCHAR(50) NOT NULL
...
November 17, 2014 at 12:56 am
Quick query without #temp tables which uses a CTE (Common Table Expression). Note that the joins have been changed from ANSI-89 and table aliases added.
😎
;WITH GROUP_SESSIONS AS
(
...
November 16, 2014 at 11:34 pm
Jeff Moden (11/16/2014)
November 16, 2014 at 10:55 pm
Viewing 15 posts - 6,556 through 6,570 (of 8,753 total)