Viewing 15 posts - 3,601 through 3,615 (of 13,877 total)
Is this as part of a data flow? If yes, add a derived column to your data flow and put the calculation in there.
ExecuteSQL tasks do exactly what they say...
June 3, 2019 at 9:56 pm
i think you need to execute a script after the dacpac deployment. a dacpac will create tables and objects, but there's no scripting involved, so no, no script can...
June 3, 2019 at 9:16 pm
I cannot see how executing a SELECT query in a post-deployment script will achieve anything useful. Where are you expecting the SELECTed data to go?
June 3, 2019 at 9:10 pm
And I just logged in to respond to your original message! 🙂
June 3, 2019 at 2:21 pm
How can we resolve this issues without changing any code?
Your options are limited.
Reducing the length of one or more of the underlying table columns is the best idea that comes...
May 31, 2019 at 12:48 pm
there are thousands . . . . can I exclude them in the where clause by using WHERE LEN(PROD_ID) - LEN(REPLACE(PROD_ID, '-', '')) > 1 ??
That's how...
May 30, 2019 at 11:00 pm
I get that error when i run my code against a very large table. Most Prod_IDs have two dashes. I want to pull the value between the dashes. This...
May 30, 2019 at 10:50 pm
SELECT ...
FROM ...
WHERE @SomeTime >= StartTalk AND @SomeTime <= EndTalk
May 30, 2019 at 4:31 pm
Try this
DROP TABLE IF EXISTS #SomeTable;
CREATE TABLE #SomeTable
(
Id INT
,EventId INT
,A VARCHAR(20)
,B VARCHAR(20)
...
May 29, 2019 at 10:49 pm
I didnt find an option in sql server management studio to generate insert scripts for data from an existing table.
There is an option, but it's well...
May 29, 2019 at 10:32 pm
Can you briefly explain why this is required?
And if there are three rows of source data, what do you want to see?
May 29, 2019 at 10:24 pm
@Phil Parkin When you say put the source code into the project, do you mean the dll? They exist in the assemblies folder. Or do you mean the actual...
May 29, 2019 at 7:52 pm
You need to put the source code for the assembly into your database project. It is part of the build.
May 29, 2019 at 6:35 pm
If start date is 1/1/2019 and end_date is 5/5/2019 and attended_day is Monday, which date should be used?
May 29, 2019 at 5:24 pm
As you have no access to the source database and no way (in code) of identifying rows which have recently been added, modified or deleted, you are in a very...
May 29, 2019 at 4:01 pm
Viewing 15 posts - 3,601 through 3,615 (of 13,877 total)