Viewing 15 posts - 46 through 60 (of 13,659 total)
OK, I looked closer at the error and it sounds like Integration Services was not installed on the server. This is part of the SQL Server installation process and not...
October 21, 2024 at 1:57 pm
That does not tell you the version of SQL Server. Please run this query on the server and post back the results:
SELECT
Version =...
October 21, 2024 at 1:54 pm
What version of SQL Server 2019 is installed? (Enterprise/Standard/Express etc)
Can you confirm that you have other SQL Agent jobs configured which execute SSIS packages?
The VS extension which allows you to...
October 21, 2024 at 1:31 pm
DT_DECIMAL does not have a precision. Use DT_NUMERIC in your formula instead.
October 21, 2024 at 10:59 am
Although this does not address your question, I'd be tempted to try out this alternative syntax:
WHERE NOT EXISTS
(
SELECT x.status
...
October 19, 2024 at 9:00 am
WHERE sent_rowid is null or vendor = @vendor_param
?
October 16, 2024 at 4:30 pm
Frederico's message is spot on, as usual!
In my opinion, Excel should almost never be used to view *sv files, because as part of its parsing, it tends to display values...
October 16, 2024 at 2:55 pm
If your databases are fully source-controlled, it should be possible to simply deploy them from the relevant branch. The act of deploying will take care of most of the DDL...
October 16, 2024 at 12:20 pm
Dynamic SQL is one way of creating a variable SELECT statement that can be executed.
October 16, 2024 at 12:12 pm
Thanks Phil. I will check this.
One more query related to this. In the screenshot you can see that "save my password" is checked for the user "SA". How can...
October 15, 2024 at 12:23 pm
Different people will do things in different ways, as it depends on how you want to work together, how many developers there are and how many projects there are.
I work...
October 15, 2024 at 8:31 am
If you do not have a server called CCSQL, I think it may be an alias to a server.
Read more about aliases here:
If you don't need or want to...
October 15, 2024 at 7:35 am
Can you provide a screen shot, as I'm not sure exactly what you mean?
October 11, 2024 at 3:55 pm
Not sure what that is, but try pressing 'Parse' (CTRL/F5) on it and you'll see that it doesn't.
October 9, 2024 at 2:27 pm
The code fragment I posted would not create that error. Can you post the entire text of the query which is giving that error?
October 9, 2024 at 2:13 pm
Viewing 15 posts - 46 through 60 (of 13,659 total)