Viewing 15 posts - 466 through 480 (of 13,838 total)
Is the version of SQL Server the same on the local machine and the server?
April 7, 2024 at 8:22 am
Can the column in the source table ever be null?
April 6, 2024 at 6:24 pm
DECLARE @sql VARCHAR(MAX);
SELECT @sql
= STRING_AGG (
...
April 5, 2024 at 1:48 pm
This still sounds like an ASP.NET question. Why do you think that this is a SQL Server problem?
April 3, 2024 at 9:29 am
thanks phil, do you mean all on the same single pc? That's the kind of feedback i was hoping for. That way no one instance of sql could interfere...
April 2, 2024 at 5:18 pm
Have you considered using multiple local VMs, one per project?
April 2, 2024 at 1:37 pm
Not sure what your question is, please elucidate.
April 1, 2024 at 3:19 pm
Could be that your datasource requires some startup-time. SQL Database with auto close option?
This is exactly what I was thinking, too.
April 1, 2024 at 3:15 pm
I checked through the SSIDB category, and it shows run and finished fine.
What do you mean by the 'SSISDB category'?
April 1, 2024 at 8:29 am
What does the package do? Is there any file system interaction?
If you open the All Executions report for the package, does that provide any clues as to the issue?
March 31, 2024 at 3:09 pm
I've not used geography:, but perhaps this post is a similar issue?
March 28, 2024 at 12:43 pm
Phil Parkin wrote:Did you try Jonathan's code?
Jonathan's code works only for 3 falculty members. The op will "settle" for up to 20.
At no point did I suggest that Jonathan's code...
March 27, 2024 at 2:28 pm
Maybe the application settings for SQL within the Application is different than what I'm running in SSMS
That was my first thought. You should check this.
March 27, 2024 at 1:47 pm
There must be a more elegant way of doing this, but I ran out of time. This appears to work with the existing data:
WITH filtered
AS (SELECT p1.Code
...
March 27, 2024 at 10:49 am
Looks promising, but I haven't used it.
You need to start doing some R&D.
Once you figure out how to code the REST calls you need, whacking that code into SSIS isn't...
March 27, 2024 at 9:41 am
Viewing 15 posts - 466 through 480 (of 13,838 total)