Viewing 15 posts - 586 through 600 (of 2,679 total)
thanks for feedback.
as that does not seem to work I now ask if the calling of the main function
SELECT * FROM
dbo.fn_GetMatchingItemsForGlobalSearchSOC('111889,111891,111899','12181', 3)
can be change so that the...
March 25, 2023 at 10:12 am
insert into a temp table , then select from temp table and insert into final, and on this select you add your required date column
March 24, 2023 at 4:29 pm
you are missing the definition of "fn_GetFullTextSearchConditionFromUserInput"
looks like this function is called upon input from user - not based on joins to other tables, but straight as you have on...
March 23, 2023 at 11:25 pm
if you use SSIS Catalog then you can specify permission at a project level and at a folder level.
other permissions can be set at ssisdb level but those would...
March 21, 2023 at 6:19 pm
did you try and change it from TVF to ITVF? that can make a significant difference to most queries.
even if you don't wish to put the whole code it may...
March 19, 2023 at 9:40 am
you need to have the order by on the Dataflow Source sql - not where you insert into the table as per above.
March 18, 2023 at 7:58 am
when generating csv files in SSIS (which I avoid every time I can - powershell easier for it) I normally do the conversion/formatting on the extract sql so that for...
March 18, 2023 at 1:02 am
see if this link helps you https://stackoverflow.com/questions/57278013/using-javascriptserializer-to-deserialize-json-c-sharp-type-not-supported-for
March 17, 2023 at 1:58 pm
what errors you getting? and did you try debugging the code in case the error you get does not reflect the true error?
March 17, 2023 at 11:22 am
answer in my opinion is incorrect (or question badly formed) - see https://learn.microsoft.com/en-us/sql/database-engine/install-windows/supported-version-and-edition-upgrades-2022?view=sql-server-ver16, Migrate to SQL Server 2022 (16.x).
one thing is the "from" the other is the "after"
March 17, 2023 at 7:15 am
just to be sure you are indeed producing a Valid CSV
when you define your output file do you have the "text qualifier" set to " (double quote)?
on example below it...
March 17, 2023 at 7:04 am
have a look at the function on last post from Steve (sgmunson) at https://www.sqlservercentral.com/forums/topic/how-can-convert-hex-value-to-decimal-in-sql-server-2012
March 15, 2023 at 1:39 am
based on the 100k row limit I would nearly bet this is to generate files to load to a MySQL Instance using the "Load data Local" statement (this is the...
March 12, 2023 at 12:03 pm
while still putting emphasis on what Jeff stated with regards to company data on a local PC I am still supplying what I consider would be the better approach to...
March 12, 2023 at 8:15 am
according to your where clause the output is right - so maybe you only interested on the rows where both start and end time are between your filter?
something like (starttime...
March 8, 2023 at 8:25 am
Viewing 15 posts - 586 through 600 (of 2,679 total)