Viewing 15 posts - 8,641 through 8,655 (of 8,733 total)
Hard to tell what is wrong without inspecting the code, can you share it?
March 31, 2014 at 3:12 pm
Do you have any event handlers configured in the package, sometimes those are overlooked?
March 31, 2014 at 2:37 pm
Luis Cazares (3/31/2014)
Eirikur Eiriksson (3/31/2014)
Luis Cazares (3/31/2014)
WITH Contacts AS(
SELECT INS.INSPNO, CNT.FIRSTNAME, CNT.LASTNAME, CNT.CAPACITY,
ROW_NUMBER() OVER( PARTITION BY INS.INSPNO ORDER BY CASE WHEN Capacity = 'Contractor' THEN -1...
March 31, 2014 at 2:33 pm
dmbaker (3/31/2014)
March 31, 2014 at 2:29 pm
david.ostrander (3/31/2014)
My SQL Server Agent shows successful completion of SSIS job but messages in Log File view shows that there was an error. How can I get the...
March 31, 2014 at 2:16 pm
If you have no sequence or date/time to go by, then unfortunately you have to grab all the source records for comparison. With these sizes, which sound manageable, my suggestion...
March 31, 2014 at 1:38 pm
qifai3zoi3ziq (3/31/2014)
Eirikur Eiriksson (3/31/2014)
If I am getting this right: A unique key should be a natural key, not a surrogate key, which means comparing all columns making up the key....
March 31, 2014 at 1:14 pm
Start with SQL 2005 and then go forward with other installations. Sometimes Higher versions gives you a hard time installing older versions of SQL.
--
SQLBuddy
I agree, start with the earliest version...
March 31, 2014 at 1:03 pm
You can use tools like WireShark[/url], nmap[/url] or other similar to do some diagnostics, I often use BackTrack[/url] to analyze this kind of problems.
Back in the days of SQL 7/2000...
March 31, 2014 at 12:50 pm
Krishna1 (3/31/2014)
create full text index fro all the 15 columns?
Sounds like a good option, have used this in similar situations before with good results.
March 31, 2014 at 12:36 pm
qifai3zoi3ziq (3/31/2014)
I am planning on doing ssis package...
March 31, 2014 at 12:23 pm
Hope you don't mind but here is my suggestion; check all the possible bottlenecks and possible points of failure, this may not even be a db issue. It only takes...
March 31, 2014 at 11:52 am
Jeff Moden (3/31/2014)
shashianireddy (3/29/2014)
I WANT DELETE FIRST 1000 ROWS IN SQL TABLE ............................
... of not knowing what...
March 31, 2014 at 11:39 am
Luis Cazares (3/31/2014)
WITH Contacts AS(
SELECT INS.INSPNO, CNT.FIRSTNAME, CNT.LASTNAME, CNT.CAPACITY,
ROW_NUMBER() OVER( PARTITION BY INS.INSPNO ORDER BY CASE WHEN Capacity = 'Contractor' THEN -1 ELSE INS.INSPNO END DESC)...
March 31, 2014 at 10:20 am
One way of simplifying this is to use the NCHAR() function;
EXEC ( ' Select CHARINDEX(NCHAR(41), @Ref) ')
March 31, 2014 at 8:01 am
Viewing 15 posts - 8,641 through 8,655 (of 8,733 total)