Viewing 15 posts - 2,611 through 2,625 (of 2,695 total)
newer versions of VS are supposed to be backward compatible..
and at least with SSDT for VS 2015 on the Integration Services project properties there is a TargetServerVersion property that allows...
September 1, 2016 at 5:16 pm
you can do it in c# or powershell - see a good example here https://blog.netnerds.net/2015/01/powershell-high-performance-techniques-for-importing-csv-to-sql-server/
main thing is not loading everything in one go to a data table - load a...
August 30, 2016 at 6:12 pm
I'm sure others will give more feedback.
from my point of view having data and logs on the same drive are not necessarily bad - all depends on the workload.
If nothing...
August 30, 2016 at 6:01 pm
imani_technology (8/30/2016)
C:\DTEXEC -f test.dtsx > C:\folder\output.csv
1. PowerShell won't allow ">". Is that a typo?
2. How do I pass...
August 30, 2016 at 1:42 pm
hi,
In terms of getting the output of the DTEXEC command onto a file how it is done depends on how you execute it
- if executed from a SQL Server...
August 30, 2016 at 5:14 am
theres no limit to the number of columns you can update in one go.
UPDATE a
SET a.color_cat = b.category
, a.location = b.location2
FROM objects_table a
JOIN shades_table b
ON a.[object_name] LIKE...
August 22, 2016 at 1:54 am
you already have your answer - you need to create a paging mechanism, and the API documentation should state how that is done.
And without us knowing what is the...
August 18, 2016 at 1:06 pm
easiest way is to build the records on SQL and then just output to the flat file as a single column.
One approach I've taken on this is to have a...
August 18, 2016 at 2:03 am
you can automate it - but depending on your volumes and what you do with the partition of over 90 days you may have performance issues.
assume a weekly process.
current table...
August 17, 2016 at 11:18 am
Few questions.
As you are considering partitioning I assume you are on Enterprise version.
When you say a few million is that 10, 50, 100, 500, 1000?
Is the table modified by that...
August 17, 2016 at 11:10 am
arkiboys (8/17/2016)
using a combination of ssis and C#, we are placing file data into sql server tables.
The files contain around 70 million of rows...
We can not use bulk insert as...
August 17, 2016 at 11:01 am
I think that message is not directly related to "always on encryption".
Microsoft SQL Server Native Client Version 11.00.2100
Running connectivity tests...
Attempting connection
Connection established
Verifying option settings
INFO: Data encryption was enforced by server...
August 16, 2016 at 2:07 pm
try also searching for the hex version of vb.
select * from sys.sql_modules
where definition like '%7662%'
Most malware I've seen on sql server execute a hex version of the code which gets...
August 16, 2016 at 3:20 am
Is that deadlock related to the remote server or local server? being that you are updating the local server I would expect it to be related to local resources, not...
August 16, 2016 at 3:05 am
try and do a repair of shared features of your 2016 install
August 16, 2016 at 2:42 am
Viewing 15 posts - 2,611 through 2,625 (of 2,695 total)