Viewing 15 posts - 76 through 90 (of 166 total)
This probably has to do with the location of osql.exe. If you serach for that error message, you'll find some posts about the issue. Here's one that I...
August 15, 2011 at 1:10 pm
This might give you a start.
SELECT
name = db_name(),
ftype = case when fileproperty(f.name,'IsLogFile')=1 then 'LOG' else 'ROWS' end,
fgroup = isnull(fg.groupname, 'Log'),
sortid = isnull(nullif(f.groupid,0),9999),
fname = f.name,
fileid =...
August 12, 2011 at 4:12 pm
I did this once, but the server names didn't need to stay the same. We migrated an entire data center, including the web servers. There was configuration information...
August 11, 2011 at 3:44 pm
This sort of thing is a problem with lots of third-party apps too. I found that, if you push back, it is sometimes possible to get more information about...
August 11, 2011 at 3:24 pm
There's the Debug mode in SSMS.
August 9, 2011 at 4:33 pm
I believe there is a security synchronization process in NAV that can do this if a database user wasn't added through NAV.
August 9, 2011 at 4:22 pm
This seems to be a pretty good explanation of passing variables into and out of the Execute SQL task.
http://www.simple-talk.com/sql/ssis/passing-variables-to-and-from-an-ssis-task/
You may be getting the metadata error because of having...
August 9, 2011 at 4:06 pm
You could probablt accomplish the column renaming part by customizing the applicable sp_MSins and sp_MSupd stored procedures in the subscriber database.
August 8, 2011 at 3:01 pm
Does the package have any logging set up? That can sometimes he helpful for identifying issues.
August 8, 2011 at 2:18 pm
This is an extensive discussion of the issues. You have to have the 32 bit version installed on the server.
This is good too.
http://msdn.microsoft.com/en-us/library/ms141766(v=SQL.100).aspx
August 5, 2011 at 4:20 pm
We try to avoid shrinking files because of the index fragmentation that can result. Recently, we were faced with a situation where we really needed to shrink a set...
August 3, 2011 at 2:12 pm
Probably by executing DTExec.
http://blogs.msdn.com/b/michen/archive/2007/03/22/running-ssis-package-programmatically.aspx
July 26, 2011 at 11:00 am
You'd populate a recordset. This seems to be a good descriptino of how to acces it in a script task.
July 25, 2011 at 2:59 pm
This could be applicable.
http://stackoverflow.com/questions/687727/ssis-external-metadata-column-needs-to-be-removed
July 25, 2011 at 2:24 pm
Viewing 15 posts - 76 through 90 (of 166 total)