Viewing 15 posts - 571 through 585 (of 13,877 total)
I don't think that this is a SQL Server or SSIS issue.
The part of the error message which I would focus on is this: Unable to complete login process due...
February 29, 2024 at 11:12 am
19, 0 not enough as the data being truncated has at least 2 decimal places according to the error.
Missed that, thanks.
February 28, 2024 at 9:57 pm
OK. Try this
(SalesLT.Product.ListPrice - SalesLT.Product.StandardCost) AS Profit
February 28, 2024 at 9:42 pm
Try changing to scale 19, precision 0.
Also, is the destination column really a 510 character string?
February 28, 2024 at 9:29 pm
OK, here is my second question, once again, this time in black and white.
What should the column should be called and what calculation is required?
The existing syntax is nonsensical.
February 28, 2024 at 9:26 pm
Precision 19, scale 18 works for numbers like
1.123456789012345678
ie, 1 number before the decimal and 18 after. Are your numbers in this format?
February 28, 2024 at 8:33 pm
(CONCAT('£'CAST ((100.00,'C', 'en-gb'))AS CurrencyFormat)'SalesLT.Product.ListPrice - SalesLT.Product.StandardCost AS Profit')Is this supposed to be one column or two? What are you trying to do here? It's not clear.
February 28, 2024 at 8:30 pm
Sorry Edited
Bravo, that's much better.
February 28, 2024 at 5:37 pm
HI Hi, I have a specific requirement for sending SQL server DB mail. In my scenario, the SQL Server query output should be sent as a PDF or Excel...
February 28, 2024 at 4:22 pm
Please have a read of the following and post back with any questions:
February 28, 2024 at 2:48 pm
If you have deployed the package to SSISDB, create an environment containing a 'sensitive' variable to store the password.
Then configure your project in SSISDB to reference the environment and map...
February 28, 2024 at 2:18 pm
I don't know the solution to your problem, but I am interested to know why you would install the rather expensive Enterprise edition on your own PC rather than the...
February 28, 2024 at 9:02 am
Here is a partial solution which shows you how to separate out the data for each of the entities.
DECLARE @x NVARCHAR(MAX)
= N'{
...
February 23, 2024 at 5:20 pm
There seem to be four separate entities in that file (Company, Demographics, Claims, Procedures).
Is your aim to import the file into four separate tables? If not, what is your aim?
February 23, 2024 at 4:02 pm
i would hate to argue with him about this. does anybody know of a solution to this problem?
SQL Agent runs on the server on which it is hosted, no...
February 23, 2024 at 3:56 pm
Viewing 15 posts - 571 through 585 (of 13,877 total)