Viewing 15 posts - 8,866 through 8,880 (of 9,641 total)
Change your on error to redirect row and output the data to a file. Then you can examine the data that is being rejected by the conversion and determine...
April 4, 2008 at 8:12 pm
It looks like you are using a query across a linked server to the DB2 database in the Execute SQL Task. If this is true can you execute the...
April 4, 2008 at 8:08 pm
There is not a database level setting for this. You can only enable the new Row Versioning Isolation Levels at the DB level using:
ALTER DATABASE DB_NAME
...
April 4, 2008 at 8:01 pm
Without seeing some kind of code it is nearly impossible to figure out what is wrong other than asking, Are you sure actually altered the SP? If you did...
April 4, 2008 at 7:33 pm
Why use SQL Mail instead of the new Database Mail feature? With Database Mail you should need an SMTP Server to point to.
April 4, 2008 at 7:24 pm
The best way to improve performance of a query is to examine the Execution plan, Statistics (Set statistic IO on) and tune the query based on this information. Execution...
April 4, 2008 at 7:21 pm
DBA (4/4/2008)
i did it with the criteria of 40 and started firing one after the other, that's why i was asking you what would be a good number.
You should run...
April 4, 2008 at 1:33 pm
Lynn,
Attached is a Word Doc with screen shots of my Alert.
Here is the Alert scripted by SSMS:
USE [msdb]
GO
/****** Object: Alert [Test] Script Date: 04/04/2008...
April 4, 2008 at 1:25 pm
Could you post some schema info so we can be little clearer on what you want?
You can certainly do:
Update TableA
Set columnA = 1
Where
...
April 4, 2008 at 12:58 pm
What is the data source you are connecting to? There could be settings that need to be made on the source or on the connection based on the source.
April 4, 2008 at 12:50 pm
Sorry I presented a SQL 2005 solution. B's solution should wotk in 2000. The INFORMATION_SCHEMA views I mention are available in 2000 though.
April 4, 2008 at 10:45 am
This query gets you dependencies:
Select
D.id as main_object_id,
O.name as main_object_name,
O.type_desc as main_object_type,
depid as depends_on_object_id,
DO.name as depends_on_object_name,
DO.type_desc as depends_on_object_type
from
sys.sysdepends D Join
sys.all_objects O On
D.id...
April 4, 2008 at 10:34 am
I would work under the assumption that it is not a an RS permissions issue unless the Cannot Display message specifies because the user does not have rights.
You should be...
April 4, 2008 at 10:15 am
I would wonder if it was adding a column or changing the Not Null to allow nulls that caused the issue?
April 4, 2008 at 9:47 am
For some reason I cannot see the image you have embedded. Could you try attaching it?
Are the 4 inputs all columns in a table or are will they be...
April 4, 2008 at 9:41 am
Viewing 15 posts - 8,866 through 8,880 (of 9,641 total)