Viewing 15 posts - 136 through 150 (of 13,877 total)
Understood. But in your database, the function definition will exist. Otherwise the code you provide would not execute.
You need to provide that (in the form of CREATE FUNCTION oracle.xxxfloat AS...
February 25, 2025 at 5:47 pm
Are you trying to rewrite the Oracle functions? In which case, you'll need their definitions, not just the code which is using them. If not, I don't really understand what...
February 25, 2025 at 4:25 pm
Sorry Phil, I had to correct my statement. When I redacted our names, I redacted too much. I guess you could say I over redacted.
OK (and good pun!). I...
February 25, 2025 at 3:44 pm
DECLARE @first INT = 13
,@second INT = 2;
SELECT Result = CASE
...
February 25, 2025 at 2:31 pm
I was asking about a subquery, not a view or a where exists.
That wasn't clear, given that the first two sentences of your original post were this:
Is there any circumstances...
February 24, 2025 at 3:29 pm
You don't mention the error you are getting, but I think you might have missed a bit of syntax:
CREATE FUNCTION LoafIngredientCostsOverTime
(
@StartDate DATE =...
February 24, 2025 at 9:02 am
thx morgan3445. there is no edit dax button in the properties pane of my sales table.
The Morgan3445 post contained a spammy link, so I reported it.
February 22, 2025 at 1:40 pm
Have a look at this. I used a temp table & added a PK for fun.
DROP TABLE IF EXISTS #temptable
CREATE TABLE #temptable
(
SomePK INT...
February 20, 2025 at 5:32 pm
Hello,
I have tried various methods to accomplish this using functions like PATINDEX, DIFFERENCE, and the Levenshtein Distance function, but I haven't been successful.
I have two columns of type VARCHAR, and I...
February 20, 2025 at 5:21 pm
Can you confirm you have downloaded and installed version 1.5 of Microsoft.DataTools.IntegrationServices.exe?
It should appear in your Programs and Features list. Also, have you rebooted since installing?
February 19, 2025 at 2:58 pm
Although it does not directly address your question, my suggestion would be that you learn how to use Tabular Editor (link) rather than VS to modify your tabular models....
February 18, 2025 at 1:45 pm
Here is one way. There may be more elegant ways, but I'm short on coffee at the moment.
February 18, 2025 at 9:55 am
Why have you posted a random query? Please ask a question.
February 12, 2025 at 6:11 pm
Can you somehow modify the process to make it incremental, or are all the rows always new?
If you have space, perhaps you could try running the insert to a staging...
February 11, 2025 at 4:30 pm
Viewing 15 posts - 136 through 150 (of 13,877 total)