Viewing 15 posts - 1,681 through 1,695 (of 6,679 total)
I would create a script in Powershell for the users - there are ways to prompt the users with a 'window' to get parameters but it is quite involved in...
July 30, 2020 at 7:33 pm
Hi Jeffrey,
we are working in insurance domain and we need to save data in xml file in ftp server , it is a business requirement.
and Yes 1Lakh records =...
July 30, 2020 at 7:26 pm
What is the purpose of converting all rows in that table to an XML format - with all 55 columns? If this is for an export file - there are...
July 29, 2020 at 9:39 pm
Hi,
Please refer below code snippet -
;WITH DateTable AS (
SELECT * FROM (VALUES
('2020-07-01',0,0),
('2020-07-02',0,0),
('2020-07-03',0,1),
('2020-07-04',1,0),
('2020-07-05',1,0),
('2020-07-06',0,0),
('2020-07-07',0,0),
('2020-07-08',0,0)
) AS t(DateValue,isWeekEnd,isHoliday)
),
TicketTable AS (
SELECT * FROM (VALUES
('Ticket1','2020-07-01','2020-07-06'),
('Ticket2','2020-07-07','2020-07-08'),
('Ticket3','2020-07-07',NULL)
) AS t(Ticket,CreateDate,ResolvedDate)
)
SELECT t.Ticket,t.CreateDate,t.ResolvedDate,
DATEDIFF(DAY,t.CreateDate,t.ResolvedDate) -...
July 27, 2020 at 8:17 pm
Just guessing - but is it possible that a scheduled process on the source system is running at the same time as the backup? If there was a large load...
July 24, 2020 at 7:32 pm
The difference is related to the connection settings or the user. To determine the difference you need to review what is happening on the Sybase system.
Nothing you do within SQL...
July 22, 2020 at 8:17 pm
<!--more-->I think you need to be looking at the Sybase system to see what is executing on that system.
My guess is that the extract query is hanging.
July 22, 2020 at 5:11 pm
This isn't a SQL Server issue - looks like you have some Windows issues on that system.
July 19, 2020 at 2:52 pm
Have you tried taking ownership of the folder - and enabling inheritance?
July 18, 2020 at 4:16 pm
Just thinking out loud...
Is it possible that your are getting a different execution plan on the source system? Since that source system is Sybase - it is possible the code...
July 18, 2020 at 4:15 pm
Totally agreed on the Modified_By and Created_By columns being fix length like an INT column with an FK but, if an application has a generic login, that would mean...
July 17, 2020 at 4:33 pm
You can start here for the SSIS Catalog: https://docs.microsoft.com/en-us/sql/integration-services/catalog/ssis-catalog?view=sql-server-ver15
Installing is quite simple - it really is just a matter of right-clicking on the item in Object Explorer and selecting the...
July 16, 2020 at 10:10 pm
If all of the controls are in the same section - either the body, page header or page footer - you can select all of the controls (Ctrl-A) and then...
July 16, 2020 at 9:32 pm
It's (a separate table) is a better practice for multiple reasons especially if it can't be altered without all hell breaking loose. The 4 columns you speak of (I...
July 16, 2020 at 9:23 pm
I am curious - why are you deploying your packages to MSDB? As of SQL Server 2012 we now have the Integration Services Catalog and project deployments which is much...
July 16, 2020 at 8:10 pm
Viewing 15 posts - 1,681 through 1,695 (of 6,679 total)