Viewing 15 posts - 7,006 through 7,020 (of 7,168 total)
When you use "Be made using this security context" you have to provide a SQL Server login and password. This option does not work with a Windows login and password.
What...
March 8, 2011 at 11:30 am
Just a thought, in case you were not aware, the instance of bcp.exe that is part of SQL Server client tools will not work against a Sybase instance so you...
March 8, 2011 at 11:25 am
What you are seeing is the same as what you would see if you ran the query in SSMS with output set to Text...even varchar columns are output as fixed...
March 8, 2011 at 11:13 am
tcloud (3/8/2011)
March 8, 2011 at 11:05 am
Using a view containing the second, third and fourth columns:
CREATE VIEW dbo.MY_ATP_MD_CLASSES
AS
SELECT CLASS_SERVICE_TYPE,
CLASS_DESCRIPTION,
CLASS_STATUS
FROM...
March 8, 2011 at 10:48 am
Are you using a domain account or a local Windows account?
March 8, 2011 at 10:37 am
OK, let's pursue item 2 for now...
I do not know of any limitations with using Linked Servers when the service starts up as Local System so I am ignoring that...
March 8, 2011 at 10:22 am
skb 44459 (3/8/2011)
3. Does the procedure you're calling have any logic paths where it does not return a resultset?I am not sure about this question
What I...
March 8, 2011 at 10:09 am
Ahhh...the use of MSDASQL provider threw me off. That is the "Microsoft OLE DB Provider for ODBC". You may want to look into a proper provider to reach an Informix...
March 8, 2011 at 7:14 am
aravind-305595 (3/8/2011)
Do we have an option incase if we are not scheduling them in SQL job ? I mean if...
March 8, 2011 at 7:08 am
No worries, we're all learning 🙂
You said you don't have a DC, that your server is just in a Workgroup, but your DSN is setup to use Windows Authentication. How...
March 8, 2011 at 6:48 am
foscsamuels (3/8/2011)
March 8, 2011 at 6:40 am
Hmmm...I know the technique you are trying to use to derive the table definition of a temp table from the resultset of a procedure works...I just confirmed it locally to...
March 8, 2011 at 6:34 am
Try removing Set FmtOnly OFF;
March 7, 2011 at 6:18 pm
You're passing a string into a function as a parameter. That string must be surrounded by single-quotes which means that any single quotes that exist within the parameter value must...
March 7, 2011 at 5:47 pm
Viewing 15 posts - 7,006 through 7,020 (of 7,168 total)