Viewing 15 posts - 2,341 through 2,355 (of 2,701 total)
August 19, 2018 at 2:38 pm
Try
if object_id('tempdb..#t','U') is not null
drop table #t;
create table #t
(x int
);
e.g. remove the GO statement (that is probably what...
August 17, 2018 at 2:48 pm
I had Snapshot and Transactional replication setup from a 2016 to a 2008 R2 without any issues for a short period. No issues with it.
2016 - both replication and...
August 10, 2018 at 4:27 pm
Eirikur Eiriksson - Sunday, August 5, 2018 4:37 AMNah, the initial question is only 1479 lines 😀
😎
a SP with only...
August 5, 2018 at 7:13 am
Look to see if the SQL server instance user has IFI privilege - https://docs.microsoft.com/en-us/sql/relational-databases/databases/database-instant-file-initialization?view=sql-server-2017
and make sure that the log file has enough size to cope with the transaction -...
August 4, 2018 at 1:57 am
easiest way for you to find out is to test it yourself on a DEV instance.
August 3, 2018 at 3:40 pm
August 3, 2018 at 8:34 am
you running that on your machine or on the server through cmdshell or sql server agent job? if on the server the files need to be on the server C:...
August 2, 2018 at 4:06 pm
Free versions already mentioned.
For paid versions
RedGate - SQL Prompt
DevArt - SQL Complete
Neither completely good, one better on particular things, the other better on other things. DevArt...
August 2, 2018 at 3:47 pm
can you post the sql you using as your source on the dataflow mentioning which column is giving you the undesired result.
August 2, 2018 at 12:18 pm
Taking in consideration what the output is I do not believe that you are doing a convert to decimal 38,10 on source, neither is the output defined with the same...
August 2, 2018 at 5:27 am
Could you post the C# code here so we can have a look at it and eventually suggest any modification.
And it will always be slow - just not...
July 31, 2018 at 12:00 pm
Trick is "do not use SSIS".
SSIS is very slow with clobs regardless of the driver used (possible exception of third party ones like CozyRoc and similar as i do...
July 30, 2018 at 5:22 am
Luis, I think you failed to understand what others were trying to explain but as I may be wrong can you explain to us how you will determine the content...
July 29, 2018 at 12:01 pm
Viewing 15 posts - 2,341 through 2,355 (of 2,701 total)