Viewing 15 posts - 241 through 255 (of 392 total)
Looks like you need to edit the package in the new edition and save again. Or follow the instructions in the link
May 22, 2013 at 10:57 pm
Post the actual execution plan for both the job and the normal run
SELECT TOP 1000 qs.*, qt.text, qp.query_plan
FROM sys.dm_exec_query_stats qs
CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
INNER JOIN sys.dm_exec_cached_plans as cp on qs.plan_handle=cp.plan_handle
CROSS...
May 22, 2013 at 10:21 pm
Follow the URL for instructions on installing Adventureworks. You'll need to add Full text to your existing install in order for Adventureworks install to succeed. You also need to...
May 22, 2013 at 9:22 pm
update tablename
set column = NULL
where cast(column as int) < 0
May 22, 2013 at 9:11 pm
You can use sys.dm_db_task_space_usage to see tempdb objects. But if you're looking for more general performance statistics of tempdb, you can use performance monitor, info here: http://technet.microsoft.com/en-US/library/cc966545.aspx
This query will...
May 22, 2013 at 9:06 pm
Yes that is the correct order of steps, however you dont need step 1, it's fine the way it is. What you are doing is creating 2 failover cluster...
May 22, 2013 at 5:19 pm
RDP into either of the nodes and open Failover Cluster Manager, expand Services & Applications, right click each one and "Move this service or application to another node"
May 22, 2013 at 5:12 pm
The trigger will execute in the context of the user. Does the user have permissions to the view "VwBPAssumption"?
May 22, 2013 at 1:23 am
You need to restore the FULL backup first WITH NORECOVERY, then the latest DIFFERENTIAL backup WITH NORECOVERY, then all the log backups starting from the last differential to the last...
May 22, 2013 at 1:11 am
You dont need to store the count of events, it should be worked out on the fly by a query or stored procedure. You could do it with a...
May 22, 2013 at 12:59 am
Have a read through this: http://support.microsoft.com/kb/173907?wa=wsignin1.0
The local regional setting has no affect other than how dates are displayed to the user in SQL.
Profiler (running on which machine?) is...
May 22, 2013 at 12:15 am
When the date is specified in ISO format (reverse date yyyy-mm-dd) SQL will interpret it correctly. It will not accept yyyy-dd-mm (day and month swapped in reverse format) as...
May 21, 2013 at 11:13 pm
You need to patch both physical servers, starting with the passive nodes. When you run the SP, it will show both instances can be upgraded at the same time...
May 21, 2013 at 10:56 pm
It sounds like you've setup an active-passive cluster with a single instance of SQL Server running on node 1. Node 2 is part of the cluster but not running...
May 21, 2013 at 10:51 pm
That's an exchange generated error message, not an SSIS problem. Something has changed in exchange/mail server end specifically blocking the connection attempt.
May 6, 2013 at 11:41 pm
Viewing 15 posts - 241 through 255 (of 392 total)