Viewing 15 posts - 2,221 through 2,235 (of 6,679 total)
It looks like the problem you are having is related to the fields being quoted. You need to specify in the BULK INSERT statement that the file is a CSV...
July 24, 2019 at 8:02 pm
In order for a database to be joined - it must have the latest transactions that have been backed up applied to the destination. To shorten the number of transaction...
July 24, 2019 at 7:45 pm
This kind of issue is one reason I avoid using linked servers for ETL type processes.
If you can use Integration Services (SSIS) that would be a much easier implementation than...
July 23, 2019 at 7:03 pm
Apologies, i got mixed up, i remembered that if a table is referenced by a FK it cant be truncated, but thats not the case here, so yes, truncate...
July 22, 2019 at 6:23 pm
When you run through the wizard - the endpoint will be configured with your personal account. This could cause an issue at some point when your credentials change.
To avoid this...
July 21, 2019 at 8:31 pm
There could be many reasons - if the commands being executed access any data outside this database the command will fail. Can you confirm that the view(s) you are using...
July 16, 2019 at 6:11 pm
If the user only has 'Browser' role - they cannot upload any reports. If the user has 'My Reports' enabled - they can upload reports to their folder.
July 15, 2019 at 5:59 pm
SSMS already has an option to right-click and SELECT TOP 1000 (which is configurable). As stated earlier - TOP does not utilize a sort unless there is an ORDER BY...
SQL...
July 14, 2019 at 3:13 pm
Not so sure it is as bad as you stated, here is what it shows on my system. With that said - I have started moving away from using sys.all_columns...
July 13, 2019 at 5:07 pm
If you have a calendar table - or a date dimension table:
Declare @startDate date = '2017-05-07'
, @endDate date = getdate();
Select...
July 11, 2019 at 10:02 pm
How complex is SP1 - could it be converted to an inline-table valued function? Since all this does is generates the data to be used by SP2 - it might...
July 11, 2019 at 7:01 pm
Most of these methods don't correctly handle situations where the final value is null (leaving a trailing comma). It's simpler to handle this using leading commas rather than trailing...
July 9, 2019 at 9:59 pm
Our CISO has requested more information about how SSIS is utilized to extract the data so I need to put the what port SSIS uses to extract data, what...
July 9, 2019 at 9:42 pm
I have seen similar issues when a large data load is processing - or someone is running a process to create/rebuild indexes. These processes can take out a lock that...
July 9, 2019 at 8:33 pm
And about X86.. yes, we still exist!!! Sad that SQL Server 2016 on wards is only X64.
What are you running that requires SQL Server to be installed on x86...
July 9, 2019 at 8:30 pm
Viewing 15 posts - 2,221 through 2,235 (of 6,679 total)