Viewing 15 posts - 1,306 through 1,320 (of 2,654 total)
SQL Sentry will only "reveal" itself on SSMS when you have done a explain plan and have the window with it visible.
at that point right-click on it and you have...
November 9, 2020 at 8:15 pm
see this example - with it you should be able to set your ssis to work with the rowversion value
/*
if object_id('test') is not null
drop table test
create table...
November 9, 2020 at 7:45 pm
with the caveat that if using the latest version of SSMS you loose the Debug capability
November 9, 2020 at 1:44 pm
you can use SQL Sentry (https://www.sentryone.com/plan-explorer to post a anonymized plan - that will keep your restrictions in place as all names / variable contents are replaced with identical names....
November 8, 2020 at 11:34 am
with newer technology it is possible on the SAN side - look for example at Dell XtremeIO - its snapshot technology means you can just click the button and you...
November 7, 2020 at 10:53 am
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
Viewing 15 posts - 1,306 through 1,320 (of 2,654 total)