Viewing 15 posts - 526 through 540 (of 2,648 total)
you are using a software for which thee vendor has a forum of its own - their forum is where you should be asking this question, not here, neither on...
April 17, 2023 at 6:43 pm
something like this:
waitfor delay '00:00:03' --pause for 3 seconds GO 3 -- run 3 times
this will result in 3 separate result pane. i'd like to keep it in the...
April 14, 2023 at 5:07 pm
you can - combination of your query, plus a waitfor, plus a GO xxxx where xxx is the number of times you wish the queries before it to execute
or a...
April 14, 2023 at 4:29 pm
correct way to check dates is to use the date - FORMAT turns them to strings so only one format would allow for that compare (YYYY-MM-DD)
so use the following construct...
April 13, 2023 at 1:48 pm
I have a big sql script that i am doing a flatfile destination on to create a csv. I have case statements and about 4 columns that I have...
April 12, 2023 at 10:26 pm
on the original query the left outer join was being used
DELETE R FROM #RESULTS_DEM AS R
INNER JOIN dbo.Dem_trans AS DEM
ON...
April 12, 2023 at 9:13 pm
we do not want to use xml. so pls tell me with out it?
whoever decides they do not wish to use the XML PATH functionality should be fired -...
April 12, 2023 at 3:23 pm
you don't delete it - just put your solution here for others to see in case they have the same issue.
April 10, 2023 at 3:23 pm
and the query supplied can likely be replaced with a single one
insert into DBO.StockData
select t.SYMBOL
, t.TRADE_DATE
, t.VALUE1
...
April 9, 2023 at 9:07 am
thank you for this.
I am a rookie so excuse the ignorance. I need to re-calculate the index after a certain calculation is done. I thought that using the...
April 9, 2023 at 8:05 am
Have you tried pasting it into ChatGPT? It will explain it.
just created a login and tried it. It gave some good layman explaination. Once thing, I wanted to ask,...
April 8, 2023 at 6:44 pm
what else is the code doing e.g. the full code of sp_crm_lead_account_matching?
Your call has other parameters and you are using output variables that are not used on the query you...
April 8, 2023 at 6:26 pm
without even knowing which CRM vendor this is I would suggest the following
April 8, 2023 at 1:48 pm
will this give you what you need? https://www.sqlservercentral.com/scripts/script-db-level-permissions-v4-3
April 8, 2023 at 10:25 am
Intellisense telling you it thinks there is an error isn't the same as having an error.
so do you GET an error when you execute the code?
does the index not get...
April 8, 2023 at 8:00 am
Viewing 15 posts - 526 through 540 (of 2,648 total)