Viewing 15 posts - 1 through 15 (of 66 total)
Hey guys
Thanks a lot for your posts on this.
One option im looking at is to use bash scripting to call bcp.
I think i can connect my docker container to bash....
December 19, 2023 at 11:13 am
Hi Phil
That works for me.. thank you very much for that
September 11, 2023 at 2:26 pm
Hi Ant
The data is coming from a website with text entry , so people can enter 84.99 or 85...
Yes I am thinking of changing the datatype to Decimal but would...
August 31, 2023 at 11:09 am
Here's the updated post that actually takes advantage of JSON. No need for TRIM() or STRING_SPLIT() functions because the source is in a proper JSON ARRAY format. Again, this...
July 20, 2023 at 1:20 pm
OK guys I have found the solution to do this.. and now I will explain in steps what to do:
May 12, 2023 at 4:09 pm
I downloaded and ran ACE - 64 bit version but now get the following error when trying to browse a linked server to MS Access that i have created
May 12, 2023 at 3:17 pm
This returns your desired results, but is it what you want?
DECLARE @SQL1 NVARCHAR(MAX)
= N'SELECT ri.Serial_Number
,UnitType =...
April 24, 2023 at 4:00 pm
Only thing I can see is that it is waiting for log memory, the temp/table var don't require log memory.
But it is constant physical table under performs on the...
April 4, 2023 at 12:46 pm
Ok thats interesting. But are you able to run this on Azure?
On what in Azure? Azure SQL Database? If so what size? Is it DTU? Is it vCore? ...
April 4, 2023 at 10:08 am
Out of curiosity, I ran this on my local machine.
Ok thats interesting. But are you able to run this on Azure?
April 4, 2023 at 8:41 am
Ok im going to expand on this.
Ive got to loop through this table and build set of Merge statements.
Currently I am using Loop based logic to extract and execute a...
March 31, 2023 at 11:46 am
Not sure what you mean by 'Complete at the last record'. What results are you hoping to see?
I want to get to the last record
but i thinik ive found...
March 31, 2023 at 11:31 am
Since you're only doing INSERT and not UPDATE, you don't need MERGE.
I really can't follow the different tables you have since there's only one source table for all the...
March 30, 2023 at 8:48 pm
Can be done your logic is just a little off.
The "ParamDefinition" must be a continuous string of all params for the dynamic SQL
DECLARE @t [dbo].[ChannelReadingType];
DECLARE @ChannelReadingTableName...
March 28, 2023 at 3:15 pm
You can reference a temp table in dynamic SQL. Could you create a temp table and load it instead?
I dont want to use a temp table because we are...
March 28, 2023 at 2:00 pm
Viewing 15 posts - 1 through 15 (of 66 total)