Viewing 15 posts - 16 through 30 (of 2,566 total)
try HH24 (upper case)
and are those 3 columns really stored as character values instead of dates? there is no other reason to convert to date to compare.
October 2, 2024 at 3:13 pm
yes I mean doing it by having DB2 doing all the work.
so it would be
select *
from openquery(remoteserver,
'select rtrim(col1) as col1
,...
September 27, 2024 at 8:06 pm
put both around square brackets e.g. [$AAG] and [$DB]
September 27, 2024 at 7:57 pm
some things to consider - normally, although not always, data conversion to char datatypes should be done on the linked query side - not sure if this is the case...
September 27, 2024 at 3:12 pm
I'm assuming you wish to generate a file with fixed size columns - do you need it to be fixed size record as well or can it be line delimited...
September 18, 2024 at 9:29 pm
you don't create a synonym for the linked sever name - you create a synonym for a object that resides on a linked server.
this means that your code would reference...
September 16, 2024 at 5:54 pm
then file is working as expected and you are getting the leading zeros - if you need them to be opened in excel as text you need to do a...
September 6, 2024 at 11:29 pm
Just confirmed and my original reply was incorrect - it is one per file - but note that you can't change the file name on the fly, any change to...
September 5, 2024 at 12:11 pm
are you sure you ticked the right boxes on the Oracle install? default will not install the required components.
also on a server only the 64bit version should be installed -...
September 4, 2024 at 1:42 pm
it is but not advisable - a Excel linked server is 1 per file per tab - not something I would setup.
if your DBA is ok with installing the MS...
September 4, 2024 at 1:33 pm
I hope that server is fully licensed for SQL Server - whatever version you have installed.
running filesystem packages with dtexec directly MAY require the packages to be fully "upgraded" to...
August 30, 2024 at 7:56 pm
it does keep version information.
code below from documentation - https://learn.microsoft.com/en-us/sql/integration-services/packages/deploy-integration-services-ssis-projects-and-packages?view=sql-server-ver16
other ways of doing it - including ci/cd pipeline - the one below just requires a share accessible by...
August 30, 2024 at 4:50 pm
main thing is not to use native SSMS to deploy - either use VS deploy or T-SQL
August 30, 2024 at 3:53 pm
Already done that, scroll up a little bit.
apologies - missed that reply.
this is around the issue I thought - and not much you can do about it other than...
August 29, 2024 at 11:09 am
use PlanExplorer to scramble the names - https://www.solarwinds.com/free-tools/plan-explorer
that will replace any object name (db, table, column) with object1, object2 and so on - but it will leave...
August 29, 2024 at 8:48 am
Viewing 15 posts - 16 through 30 (of 2,566 total)