Viewing 15 posts - 931 through 945 (of 2,486 total)
Ok, this is a huge step forward to solving your problem.
"Error: -2147467259 (80004005); Provider Error: 5 (5)" is basically Access Denied. So the credentials being used to access the INGRES...
August 16, 2005 at 11:47 pm
The format for the replaceable parameters in the templates is,
< parameter name , datatype , example data or default value >
The 'sysname' that is referred to in the templates is...
August 16, 2005 at 11:42 pm
You also don't have the overhead of maintaining the cursor data in memory.
August 16, 2005 at 9:40 pm
These are statistics that are generated/used by the query optimiser when it's generating an execution plan. For what should be apparent reasons now, it is not a good idea to...
August 16, 2005 at 7:44 pm
Just because you can successfully execute the DTS package manually, don't rule out any security problems. DTS executes with the security credentials of the process that started it. So if...
August 16, 2005 at 4:32 pm
Lets try and get past why you would store the package in SQL Server, but not execute it in SQL Server. I mean that way you'd be able to take...
August 16, 2005 at 4:27 pm
Cool, thanks Chris always love ways to avoid triggers and such
August 16, 2005 at 1:57 am
Only one record in the whole table can be set to 1, all other records must be 0.
At present the field could be edited/updated via Query Analyzer, possibly in the...
August 15, 2005 at 11:38 pm
Sorry, I can't reproduce your results, I don't have any databases where the MS_Description property is used.
Honestly, I can't recall using it in any of the databases I've worked on over the...
August 15, 2005 at 10:59 pm
I'd be inclined to say you'll have to pre-process the file and insert the row terminators. Something like running a short VBScript to insert CR+LF into the appropriate places. Once...
August 15, 2005 at 10:23 pm
In this case, the debugging won't work as you explain it. The statements in the procedure are not being executed, only the CREATE PROCEDURE statement is being executed.
August 15, 2005 at 10:19 pm
The uppercase N at the start of a string signifies that the string is in unicode format.
Most of the SQL Server object names, functions and stored procedures use unicode string...
August 15, 2005 at 9:53 pm
This sort of what you're looking for?
Create table #tblDataDictionary ( table_id [sql_variant] , table_name [sql_variant] , column_order [sql_variant] , column_name [sql_variant] , column_description [sql_variant] )
INSERT INTO #tblDataDictionary SELECT o.[id] as...
August 15, 2005 at 9:49 pm
Yes you can have SQL Server running under a plain user account, but to get proper functionality (SQL Agent, SQL Mail, registry access, etc...) you need to assign a few...
August 15, 2005 at 9:28 pm
D$ is an admin only share so it won't work unles the user account in the Local Adminstrators group?
Better solution is to share out the subfolder on server2. Then your restore...
August 15, 2005 at 5:17 pm
Viewing 15 posts - 931 through 945 (of 2,486 total)