Viewing 15 posts - 2,761 through 2,775 (of 4,820 total)
Pretty good bet that the SQL Server Agent "service account" does not have permission to access the folder. When an Agent job runs, it runs under the auspices of the...
March 7, 2017 at 7:11 am
Possible restrictions on the server for IE, implemented possibly by Group Policy?
March 6, 2017 at 4:22 pm
Here's a solution that doesn't require the JSON functions and doesn't use REPLACE, which can be slow with large volumes of records:CREATE TABLE #Staging (
ID NVARCHAR(10),
CustomFields NVARCHAR(100),
March 6, 2017 at 3:52 pm
Not sure why you would ever want to connect to a later version of SQL Server from a lower version of SSMS. As the later versions of SSMS can connect...
March 6, 2017 at 7:25 am
Sounds a little like a homework problem, so I'll ask what have you tried? Have you considered using the REPLACE function? As you've provided information only about a single input,...
March 6, 2017 at 6:14 am
Thanks Steve, that's all I've been able to do so far is build a <a...
March 3, 2017 at 8:54 am
DECLARE @begindate varchar(30) = '2010-03-01'
DECLARE @enddate varchar(30) = '2010-03-02'
...
March 2, 2017 at 9:15 pm
Why not use a windowed version of COUNT?
SELECT a.*
FROM dbo.ComplexQuery AS a
WHERE COUNT(DISTINCT ColumnD) OVER(PARTITION BY ColumnA, ColumnB, ColumnC) = 2
If it won't let...
March 2, 2017 at 8:32 pm
Jeff,
I've been reading through this topic from page 1, and I'm quite sure 121 would NOT be a member of the set, as it repeats a digit. All...
March 2, 2017 at 8:24 pm
Here's my code for this, and it runs in just 10 seconds on my Core i7 machine (2.9 GHz), 32 GB of RAM, SQL 2014:
WITH E1 AS (
March 2, 2017 at 12:41 pm
Also, what I ended up doing was changing the #SELECTED_HITS table to end up having a row for each possible value from 0 to 49, based on the RangeName values...
March 2, 2017 at 11:29 am
March 2, 2017 at 11:20 am
Hi have a doubt about create indexes on computed columns.
Microsoft provide in its web...
March 2, 2017 at 10:59 am
March 2, 2017 at 10:44 am
Viewing 15 posts - 2,761 through 2,775 (of 4,820 total)