Viewing 15 posts - 1,306 through 1,320 (of 2,649 total)
without having both procs there's nothing I can do - it may be a slight error on your SprocA that causes the table not to be populated
November 5, 2020 at 4:06 pm
you need to install the EXACT SSDT version I mention above - download it and install onto a new VS 2017 instance - it will do a Shell install which...
November 5, 2020 at 1:05 pm
depending on your VS version it may not show up at all - VS2019 for example will use a different driver (replacement from Microsoft of the Attunity one )
To use...
November 5, 2020 at 11:57 am
I would note that if the purpose of this query is just to output to a file for consumption by other system then using a different method would probably be...
November 3, 2020 at 11:09 am
you can create a unique filtered index on that column - it will prevent inserting more than 1 row with it set to true.
October 30, 2020 at 6:35 pm
Thanks. Actually I have a JSON querying which is taking longer time for half million rows take approx. 15 mins to finish. However using query hints it runs faster....
October 29, 2020 at 9:41 pm
Frederico .... maybe you're onto something.
Your query has multiple references to ftbid01 which obviously should be to 01, 02, 03, ...
The outer apply could be a cross apply, or...
October 26, 2020 at 3:38 pm
if I got it correctly the dynamic requirement is that its not the content of the field that is being updated but rather that the field it is being used...
October 26, 2020 at 2:16 pm
Okay, I felt this would be more efficient and extensible ti done in SQL server, and I guess I thought it would be easier, but thanks I will do...
October 26, 2020 at 2:01 pm
in SSMS you need to use xp_cmdshell.
but on your original post you stated that this is to be executed from a vb.net program - that being the case the correct...
October 25, 2020 at 10:50 pm
how are you executing this? syntax is ok if executing on a command prompt but depending on how you are doing it you will require additional quotes.
for example if doing...
October 25, 2020 at 3:48 pm
That's great news Lynn - and awesome timing 🙂
October 24, 2020 at 1:39 pm
gMSA accounts are known to give errors when it comes to permissions on a network share. Do you think you could create a proxy account and use that instead
have...
October 22, 2020 at 5:15 pm
That's why I put the note: my EXISTS example does NOT reference an outer table. A rare situation perhaps, but not impossible, more likely:
WHERE EXISTS(SELECT 1 FROM sys.tables WHERE...
October 21, 2020 at 2:54 pm
Wouldn't that count every reference as a "join", including a select from a single table? And any other single select from a table.
SELECT ...
FROM dbo.table1
SELECT ...
FROM dbo.table1
WHERE EXISTS(SELECT 1...
October 21, 2020 at 1:54 pm
Viewing 15 posts - 1,306 through 1,320 (of 2,649 total)