Viewing 15 posts - 8,671 through 8,685 (of 8,760 total)
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
This can be done using sub-query
Using TOP
DECLARE @BATCH_SIZE INT = 10;
DELETE X
FROM (
SELECT TOP (@BATCH_SIZE) [COLUMN]
FROM [TABLE_NAME] M
ORDER BY [COLUMN] DESC
) AS X
Using OFFSET-FETCH (2012)
DECLARE @BATCH_SIZE INT = 10;
DELETE X
FROM...
March 31, 2014 at 5:33 am
This is a case of premature exclusion, nothing to worry about 😀
USE tempdb;
GO
DECLARE @inspection TABLE
(
INSPNO INT NULL
,StartDateDATE...
March 31, 2014 at 1:42 am
Could you supply a DDL with a sample records and the expected results?
March 30, 2014 at 11:10 pm
jordon.shaw (3/30/2014)
SELECT IS.INSPNO, CNT.FIRSTNAME, CNT.LASTNAME
FROM INSPECTION IS
INNER JOIN INSPECTIONCONTACT CNT
ON IS.INSPNO = CNT.INSPNO
WHERE CNT.CAPACITY <> 'Contractor'
Quick note, be careful not to use reserved keywords in this manner, that is the...
March 30, 2014 at 10:58 pm
Viewing 15 posts - 8,671 through 8,685 (of 8,760 total)