Viewing 15 posts - 1 through 15 (of 22 total)
Did you look in the Windows Event Log and SQL Server Error log? They should tell you why it won't start.
November 19, 2012 at 2:04 pm
You need to figure out what is chewing up your plan cache. Looking for single use plans, etc. What did the plan cache look like on the old...
November 19, 2012 at 2:03 pm
Write your query both ways and look at the execution plan.
It is best to use articles and/or advice on forums as guidance to figure things out and confirm stuff for...
November 15, 2012 at 9:57 pm
Can you telnet to the SQL Server port over the router? Don't assume it is 1433. Check using SQL Server Configuration Manager. Beyond this, I would use...
November 15, 2012 at 12:15 pm
The SQL Browser Service uses UDP 1434. This is commonly blocked at firewalls. Why do you need to discover the server using Browser? Can you connect directly...
November 14, 2012 at 9:28 am
There is not really enough information here. What type of activation? You say the transmission_queue is empty so I assume that means the destination queue is what is...
November 14, 2012 at 9:24 am
You can do everthing you want to in the data flow. Conditional split to separate the inserts and updates, and if you truly do need to do your updates...
November 14, 2012 at 9:15 am
Are you seeing difference in I/O or CPU Time? Duration is notoriously unreliable in these kinds of comparisons.
November 13, 2012 at 10:25 pm
There is no downgrade path once your databases have been upgraded. If you want to do this, however you do it, you will need to "copy" the transactions from...
November 13, 2012 at 10:24 pm
This should get you started. If you want to know the column to script it out you can use the parent_column_id and join to sys.columns.
SELECT OBJECT_NAME(parent_object_id) AS TableName, name...
November 13, 2012 at 10:16 pm
rhythm.varshney (11/13/2012)
November 13, 2012 at 7:59 pm
Evil Kraig F (11/12/2012)
November 12, 2012 at 2:37 pm
I agree with Jeff. Or for that matter since this is just in the select list, that scalar function can be turned into a case statement very easily.
November 12, 2012 at 2:29 pm
rhythm.varshney (11/12/2012)
November 12, 2012 at 2:27 pm
So you are importing the column to your staging table in it's native format and then splitting it from there? On what basis are you splitting it (i.e. at...
November 11, 2012 at 9:25 pm
Viewing 15 posts - 1 through 15 (of 22 total)