Viewing 15 posts - 616 through 630 (of 4,820 total)
You can use:REPLACE(YourJSONColumnOrExpression, CHAR(13)+CHAR(10), ;'')
September 11, 2018 at 3:26 pm
September 11, 2018 at 3:04 pm
September 11, 2018 at 1:56 pm
This isn't a web support forum. It's a SQL Server forum. Not everyone here will know much about html and/or web configurations and settings. While you know what "post a...
September 11, 2018 at 1:51 pm
Below is the screen shot of the report in excel after exporting my SSRS report....
September 11, 2018 at 1:48 pm
September 11, 2018 at 1:38 pm
With that much query to review, I'd rather know ahead of time exactly what "assigning billing time" really means. Why would there ever be work that's not in the "billable"...
September 11, 2018 at 1:13 pm
When you convert data types that differ...
September 11, 2018 at 1:02 pm
This suggests that the files with the problem were generated "auto-magically", by whomever provides them. Until you open them with Excel and then re-save them, you find it impossible to...
September 11, 2018 at 11:31 am
The problem here is that you are trying to do something that the connection via Linked Server (which is either OLE DB or ODBC), doesn't support doing. You would be...
September 11, 2018 at 11:24 am
About the only way to automate this beyond just copying and pasting the data into Word, would be to use an SSIS package, where you can run that SQL code...
September 11, 2018 at 11:19 am
FYI, edited my query to remove unnecessary code, and fix resulting query formatting. The reason that you can't use PIVOT here is because you are trying to pivot more than...
September 11, 2018 at 11:12 am
Perhaps this will do?CREATE TABLE #temp1 (
[Type] VARCHAR(6) NOT NULL,
A VARCHAR(4) NOT NULL,
B VARCHAR(5) NOT NULL,
C VARCHAR(14) NOT NULL,
D VARCHAR(9) NOT NULL,
[Period] VARCHAR(7) NOT NULL,
Count1 INTEGER NOT NULL,
Count2 INTEGER
);
INSERT INTO #temp1
(
[Type],
September 11, 2018 at 11:07 am
Hi
I'm not T-SQL/SP expert. Is it possible to write a small procedure that can copy...
September 11, 2018 at 10:03 am
Viewing 15 posts - 616 through 630 (of 4,820 total)