Viewing 15 posts - 3,871 through 3,885 (of 7,168 total)
They're two ways to do the same task. SSIS OLE DB Destination with Fast load uses OPENROWSET to leverage the BULK INSERT interface. OPENROWSET when used from T-SQL with a...
June 5, 2012 at 3:06 pm
I do not think you can delete Excel data using an OLE DB connection but I read you can use the DROP TABLE followed by CREATE TABLE syntax to accomplish...
June 5, 2012 at 2:00 pm
inHouseDBA (6/4/2012)
Using SQL Server 2005 (9.00.5000.00), but moving to SQL Server 2008 in 4 months.
I am in the process of updating my Weekend Maint scripts..
Currently I Reindex Clustered and...
June 5, 2012 at 1:44 pm
Please do not enable OLE Automation procs unless absolutely necessary...which is only if a third-party vendor requires it in my opinion.
May I recommend using PowerShell for this task? This...
June 5, 2012 at 1:40 pm
Try something like this. Running it with the -WhatIf will only report what would be deleted by this command. Remove the -WhatIf when you're ready for it to do work.
#################################################
#init...
June 5, 2012 at 1:23 pm
dbdmora (6/5/2012)
We have run sp_validatelogins on all our servers and found a few orphan...
June 5, 2012 at 9:14 am
I am not sure you can do that when storing packages in msdb, I would need to test it. However, if you are storing your packages as files and executing...
June 5, 2012 at 8:57 am
Fly Girl (6/4/2012)
June 4, 2012 at 4:58 pm
You do not need to drop and recreate the index. You can use ALTER INDEX to specify the new NORECOMPUTE value.
ALTER INDEX [index_name]
ON [schema]....
June 4, 2012 at 4:39 pm
Fly Girl (5/25/2012)
I'm having a discussion with an internal administrator that does not wish to enable xp_cmdshell on a server...
If your target workplace is in a corporate environment, which it...
June 4, 2012 at 4:16 pm
You can export them from SQL 2005 to disk using dtutil (2005 version) if having them as files as a middle-step makes more sense for your migration. You could then...
June 4, 2012 at 4:03 pm
SQL Kiwi (5/30/2012)
...you should try to specify date/time literals using an international unambiguous format like '2011-12-02 10:52:00' instead of 'Dec 2 2011 10:52AM'.
I recently saw this on another post...
June 4, 2012 at 3:42 pm
Brandie Tarvin (5/31/2012)
Is SSIS integrated with Powershell?
You can use PowerShell from within SSIS using this[/url] (works well). Or you can call an SSIS package from PowerShell by invoking DTExec (no...
June 4, 2012 at 3:20 pm
June 4, 2012 at 1:02 pm
Viewing 15 posts - 3,871 through 3,885 (of 7,168 total)