Viewing 15 posts - 2,656 through 2,670 (of 4,820 total)
I think what the original poster is asking is whether SSRS can export to a spreadsheet and have that spreadsheet contain a drop down control that causes the desired records...
April 5, 2017 at 9:34 am
Carriage returns and line feeds together make for a standard ASCII based line ending. Not sure if it will help, but wherever CHAR(10) appears, it probably should be CHAR(13) +...
April 5, 2017 at 9:21 am
April 5, 2017 at 9:00 am
April 5, 2017 at 8:52 am
Setting up the tables isn't necessarily difficult, but getting the design of them correct is the MOST important part. If you can share some sample data and describe in detail...
April 5, 2017 at 7:28 am
Have you made any attempts to code this yourself? First thing I see is that with your design, you're leaving yourself wide open to something known as SQL injection. What...
April 5, 2017 at 6:54 am
April 4, 2017 at 11:46 am
April 4, 2017 at 11:35 am
stino - Tuesday, April 4, 2017 11:12 AM
If you were expecting this set of SSIS objects to actually merge...
April 4, 2017 at 11:27 am
What did you apply the output of the Merge to ?
April 4, 2017 at 11:07 am
April 4, 2017 at 11:02 am
If there's a problem here, it's more likely ODBC-related than anything else. I'd check to be sure you have the latest service pack and CU for SQL Server, as well...
April 4, 2017 at 10:53 am
April 4, 2017 at 10:48 am
Try this:
CREATE TABLE dbo.DES_Nomenclator (
ClientID int PRIMARY KEY IDENTITY,
Info_untyped xml
);
INSERT INTO DES_Nomenclator (Info_untyped)
VALUES ('<?xml version="1.0" encoding="UTF-8"?>
<codeSystem>
<codeSystemMetadata>
<codeSystem>2.16.840.1.113883.3.3368.6.15</codeSystem>
...
April 4, 2017 at 9:21 am
This syntax stems from the days when CTE's didn't exist, and subqueries were painful enough, that there was at least some incentive to use it. The idea was mostly useful...
April 4, 2017 at 6:41 am
Viewing 15 posts - 2,656 through 2,670 (of 4,820 total)