Viewing 15 posts - 2,326 through 2,340 (of 2,701 total)
on your catch block output the error exception (and inner exception if any) to your log file and see exactly what the error is.
One thing that is likely...
September 5, 2018 at 4:38 pm
have you tried setting Delayed Durability? just to see the impact - and permanent setting if it improves and the DB can leave with it on (or at least the...
September 2, 2018 at 4:41 pm
install SQL Server 2017 express and make sure the path for its executables is on your path variable
September 2, 2018 at 1:16 pm
select convert(decimal(10,2), replace(replace('"6,789.01"', '"', ''), ',',''))
would do the trick - but if using SSIS or other tools those sometimes handle that on their own without any...
August 31, 2018 at 12:36 pm
August 31, 2018 at 12:22 pm
Can't people read manuals anymore? it is quite clear what you need to do on it.
https://docs.microsoft.com/en-us/sql/tools/bcp-utility?view=sql-server-2017
August 29, 2018 at 1:25 pm
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
Viewing 15 posts - 2,326 through 2,340 (of 2,701 total)