Viewing 15 posts - 1,981 through 1,995 (of 5,394 total)
Sorry if this solution is too simplicistic (I might have missed something), but why do you think SSIS would not be the right tool for this task?
January 30, 2012 at 2:58 pm
J Livingston SQL (1/30/2012)
January 30, 2012 at 2:56 pm
First of all you have to define what "duplicate" means to you. Duplicate records for the same Id? Duplicate records for the same id+status?
If the former, this should do:
SELECT *
FROM...
January 30, 2012 at 10:13 am
Gianluca Sartori (1/30/2012)
SQL Kiwi (1/30/2012)
Gianluca Sartori (1/30/2012)
I guess we just found a bug! I just tried this and I get an exception...Same in the latest SQL Server 2012...
Weird. Worth filing...
January 30, 2012 at 9:59 am
SQL Kiwi (1/30/2012)
Gianluca Sartori (1/30/2012)
I guess we just found a bug! I just tried this and I get an exception...Same in the latest SQL Server 2012...
Weird. Worth filing on Connect?
January 30, 2012 at 9:57 am
SQL Kiwi (1/30/2012)
Gianluca Sartori (1/30/2012)
BTW, Google indexes scarily useless things: 😉Wow. It's a Googlewhack too.
Uh. I didn't know what a Googlewhack is.
Interesting neologism...
January 30, 2012 at 8:42 am
Gianluca Sartori (1/30/2012)
1) In SSMS isse SELECT TOP (0) * FROM SomeTable, right click the cell on the left of the fisrt column header...
January 30, 2012 at 8:39 am
Plenty of ways to do it:
1) In SSMS isse SELECT TOP (0) * FROM SomeTable, right click the cell on the left of the fisrt column header (the one...
January 30, 2012 at 8:38 am
BTW, Google indexes scarily useless things: 😉
January 30, 2012 at 8:08 am
I mean: did you check that row or column delimiters are not in the column data?
January 30, 2012 at 7:49 am
Row delimiter (CR LF) in the column data?
Column delimiter in the column data?
January 30, 2012 at 6:58 am
You will find both information in Event Viewer.
As for the server startup (approximatley 2 minutes after the failover) you can query that information from sys.databases (it's the date when tempdb...
January 30, 2012 at 6:56 am
If you want to optimize indexes and stats this is a good place to start looking:
http://ola.hallengren.com/sql-server-index-and-statistics-maintenance.html
January 30, 2012 at 6:46 am
Viewing 15 posts - 1,981 through 1,995 (of 5,394 total)