Viewing 15 posts - 2,581 through 2,595 (of 2,663 total)
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
have you tried this ? http://www.microsoft-sql-ssis.com/2015/09/how-to-create-and-use-temp-tables-in.html
August 13, 2016 at 12:11 pm
SSDT will install with a visual studio shell - no need to get a full version of visual studio just for this.
August 11, 2016 at 12:20 pm
Viewing 15 posts - 2,581 through 2,595 (of 2,663 total)