Viewing 15 posts - 1,066 through 1,080 (of 7,168 total)
What are you using from .NET? Are you trying to read the raw XML or are you using the SSIS Object Model assemblies?
May 23, 2013 at 5:00 pm
If you have 25 different file formats going into 25 different tables with different schemas then you will need 25 different Flat File Connection Managers, and at minimum one Data...
May 23, 2013 at 4:58 pm
osql was deprecated in SQL 2005 so I would recommend to stop using it. sqlcmd is the replacement for it.
Are you trying to connect to a local or remote instance?...
May 23, 2013 at 9:52 am
All sp_MSForEachDB does is implement a cursor for you dynamically and run your code against each DB. Check the article I posted. The proc provided does the same thing, except...
May 23, 2013 at 9:45 am
From the provider error I am assuming you are trying to connect to a local instance. Please confirm.
Also, you posted in a 2008 forum but are saying 2005 SSMS. Please...
May 22, 2013 at 4:42 pm
jrgomont (5/22/2013)
May 22, 2013 at 4:06 pm
Mind sharing what was logged for the run where you missed backing up some databases?
May 22, 2013 at 2:59 pm
Are you capturing the output of the job step to a log file or table, the options in job step advanced tab?
May 22, 2013 at 2:47 pm
Revenant (5/22/2013)
bcsims 90437 (5/22/2013)
crookj (5/22/2013)
Daniel Bowlin (5/22/2013)
fatigueLethargy
Apathy
Indifference
meh
May 22, 2013 at 2:45 pm
UconnDBA (5/22/2013)
EXEC sp_MSForEachDB 'select members.name AS UserName, RTRIM(LTRIM(roles.name)) AS RoleName
from sys.database_principals members
inner join sys.database_role_members drm
on members.principal_id =...
May 22, 2013 at 2:10 pm
That's odd. I am not having any issues accessing my vm which includes a hyphen in the name:
Maybe check that you have permissions to access WMI on that server, i.e....
May 22, 2013 at 1:39 pm
Looks like a validation error. Is it safe to assume that any paths to the attachment file are determined dynamically at runtime? Many times the problem with deploying to a...
May 22, 2013 at 9:39 am
shrsan (5/20/2013)
Hi,I have created packages in VS2010 in development but my production env is 2008r2. how do i downgrad my packages?
Thanks in Advance
In short, you can't, at least by Microsoft-supported...
May 22, 2013 at 9:12 am
ODBC would be my first choice these days but that only covers your connectivity, not the code going against the database. Unless you are writing ANSI-standard SQL that is so...
May 22, 2013 at 8:15 am
What about cases where a User-defined Database Role is a member of db_owner?
May 22, 2013 at 8:04 am
Viewing 15 posts - 1,066 through 1,080 (of 7,168 total)