Viewing 15 posts - 2,206 through 2,220 (of 2,568 total)
it may not be as easy as you would like.
It will all depend on how your packages are build, executed and where they are stored.
Storage
-...
August 23, 2018 at 3:14 pm
Maybe you have already considered these but still worth mentioning.
http://www.sqlservercentral.com/articles/SQL+Server+Data+Tools+(SSDT)/156986/
http://blogs.solidq.com/en/sqlserver/ssdt-how-to-solve-the-circular-references-issue/
but in any case its never straightforward.
August 22, 2018 at 5:07 pm
if you change you call code to be
long lTimeStamp = d.getTime();
UUID uuid = UUID.randomUUID()
sql.call("{call pCreate_TestRec(?,?,?)}", [uuid, 'test', lTimeStamp] );
does it work?
August 20, 2018 at 6:49 am
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
Viewing 15 posts - 2,206 through 2,220 (of 2,568 total)