Viewing 15 posts - 1,486 through 1,500 (of 13,838 total)
I can't execute that π
I mean like this
DROP TABLE IF EXISTS #Personnel
CREATE TABLE #Personnel (<column definitions>)
INSERT #Personnel
VALUES (),(),() --your sample data
--Same for #PersonnelTeam and #Team
Doing it like...
March 22, 2022 at 4:04 pm
Are you able to provide your sample data in a format which we can cut & paste into SSMS, please?
March 22, 2022 at 3:44 pm
That looks good to me.
March 22, 2022 at 11:56 am
This should help you dig into the hierarchy.
SELECT returns.id
,calc_chan_detail.channel
,calc_chan_detail.name
FROM
OPENJSON(@json)
...
March 22, 2022 at 10:17 am
Ok then i should chek how to parse a text file (*STK) and save to .csv or XML or JSON. Then read those files and write info in DB.
The...
March 22, 2022 at 8:58 am
Did you make any progress with this?
That file structure does not look easy to process. Your idea of converting the source data to JSON would certainly make it easier toΒ ...
March 21, 2022 at 9:19 am
What is being done to combat the massive influx of spam posts which are happening multiple times a day at the moment?
The silence is deafening.
March 18, 2022 at 9:04 am
Well done on solving it. There's no shame in this, it was a learning experience π
March 18, 2022 at 8:30 am
Maybe use checksum() as suggested & push results to a separate 'duplicate suspects' table, then refine your search using the data in the new table?
March 16, 2022 at 11:29 am
Unless Z is a local drive on the server, those are not UNC paths. You should avoid mapped drives when doing this.
March 15, 2022 at 1:40 pm
SSMS v18 and onwards do not appear to have the debugging feature. However, it is still possible to debug T-SQL, but using SSDT as your debug client.
March 15, 2022 at 1:02 pm
Try using the full UNC path, eg:
\\servername\c$\folder\filename
(after verifying that the user running the job can access that path)
Also check that your proxy is being picked up properly by checking the...
March 15, 2022 at 11:12 am
Well done.
Now, how about fixing whatever it is that puts that garbage into your Audit Trail table in the first place? π
March 15, 2022 at 6:49 am
You're right, it's probably not the same issue. But it was the only thing I could think of which was at all similar.
Lastly is getting SQL Server using the same...
March 14, 2022 at 7:27 pm
Does [ProvidersDirectory].[dbo].[ProvidersTable] have the source data column?
If so, use that.
If not, where does the source data come from?
March 14, 2022 at 7:23 pm
Viewing 15 posts - 1,486 through 1,500 (of 13,838 total)