Viewing 15 posts - 2,281 through 2,295 (of 2,647 total)
August 28, 2018 at 11:25 am
Yes the process will need additional space - original index/table + the new one - new one can be build on tempdb or on the destination db itself.
Log file...
August 27, 2018 at 10:55 am
From your latest posts on the forum it looks like you are trying to learn to use sql server - as part of that learning process your most important task...
August 25, 2018 at 4:22 am
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
Viewing 15 posts - 2,281 through 2,295 (of 2,647 total)