Viewing 15 posts - 2,311 through 2,325 (of 2,647 total)
ìn case anyone wishes to look at it.
Its not a complex proc - its just a rather complex query
alter procedure [Schema]. @DateFrom date
,...
July 18, 2018 at 10:35 am
Possible options
- define the file as not having headers on it, load into a staging table with all columns defined similar to what you did, and then parse...
July 18, 2018 at 1:13 am
can you put code for that proc here? if it is the one I saw before it won't deal with dates datatypes.
July 15, 2018 at 1:42 am
Really you should not set it to off and should code accordingly.
But in either case it is doing what the manual says.
https://docs.microsoft.com/en-us/sql/t-sql/statements/set-ansi-nulls-transact-sql?view=sql-server-2017
set...
July 14, 2018 at 1:03 pm
You could setup a msa/gmsa just to perform that task - give it the required permissions to the folders on both servers, and have on a windows schedule on one...
July 13, 2018 at 3:10 pm
As this is a error that occurs only at times, mainly at particular periods it leads me to believe the most likely cause is something on the network temporarily blocking...
July 13, 2018 at 3:03 pm
I don't quite understand your question.
Is it maybe that you are asking what is the fastest way to extract data out of a sql table onto a file?...
July 13, 2018 at 2:05 pm
We have a large data warehouse - a number of fact and dimension tables. As...
July 13, 2018 at 11:49 am
have a look at
https://www.brentozar.com/archive/2013/01/best-practices-table-partitioning-merging-boundary-points/
and http://www.dbdelta.com/table-partitioning-best-practices/
for some examples and explanations.
this may also be of help on the partition aspect of it.
July 11, 2018 at 4:29 pm
32/64 bit has nothing to do with network speed - if speed is lower the issue is with the package and what it is doing and the configuration of the...
July 11, 2018 at 4:00 pm
Its always hard to help with third party tools - the maker should be your first point of contact to see if performance can be improved with settings or workarounds...
July 11, 2018 at 3:56 pm
If you run the package through a sql server agent job, within a step defined as Integration Services Package there is a tick box on the advanced properties to elect...
July 11, 2018 at 3:23 pm
This is a MSBI reporting tool.
We consume infromation...
July 8, 2018 at 1:17 am
if I understand correctly what you need I think the following covers it
select *
from items
where (len(@items) > 0
and item_no IN (
July 5, 2018 at 1:17 pm
Viewing 15 posts - 2,311 through 2,325 (of 2,647 total)