Viewing 15 posts - 931 through 945 (of 2,487 total)
I'm presuming you have an ActiveXScript task like
Function Main()
DestinationColum("Col001") = Source("Col001")
etc...
If you put the On Error Resume Next statement before the line you want to capture error information for,...
--------------------
Colt 45 - the original point and click interface ![]()
August 16, 2005 at 11:56 pm
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
August 16, 2005 at 11:42 pm
You also don't have the overhead of maintaining the cursor data in memory.
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
August 16, 2005 at 4:27 pm
Cool, thanks Chris always love ways to avoid triggers and such ![]()
![]()
![]()
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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.
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
August 15, 2005 at 9:28 pm
Viewing 15 posts - 931 through 945 (of 2,487 total)