Viewing 11 posts - 31 through 41 (of 41 total)
Once again, I would suggest installing again.
May 12, 2009 at 6:40 am
I am running on Vista Business and use Reporting services all the time. I have Vista on my laptop with SQL2005 installed and it included SSRS but I had...
May 12, 2009 at 6:39 am
Sorry, but that doesn't make sense. The Server Type is where the Database Engine, Analysis Engine, Report Engine, Integration Services are listed. The Server Name should have the...
May 12, 2009 at 6:28 am
The sDestination file does not exist. The sSourceFile does not exist.
Function Main()
Dim oFSO
Dim sSourceFile
Dim sDestinationFile
Set oFSO =...
May 12, 2009 at 6:23 am
I fell into SSIS from DTS and was researching, reading and generally becoming frustrated. Then I found out how to do it! Simply go to the database engine...
May 11, 2009 at 2:58 pm
I would suggest going to add/remove programs and select SQLServer and have your discs ready. Be sure when you come to the options page you specifically select SSis, etc....
May 11, 2009 at 2:44 pm
If they are true duplicates from col 1 to the end of the record, how about a simple union to a temporary table and then replacing the table with duplicates...
April 6, 2009 at 6:52 am
Richard Fryar (3/9/2009)
The only other thing I can see is that you have left out the space in Initial Catalog in the connection string.
That is exactly what the problem was....
March 9, 2009 at 8:31 am
The schema is dbo. I've tried it with the server.dbo.filename and it fails that way as well. Also just dbo.filename. Same failure.
March 9, 2009 at 7:17 am
The table:
USE [NPNPlus_GenericDrugs]
GO
/****** Object: Table [dbo].[PharmacyGenericDrugs] Script Date: 03/06/2009 13:45:59 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[PharmacyGenericDrugs](
[DrugName] [varchar](250) NULL,
[DrugGroup] [varchar](250) NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING...
March 6, 2009 at 1:14 pm
I've found the easy way to remove duplicates is with the UNION statement:
select * into aTempTable
from SourceTable
UNION
select * from SourceTable
GO
truncate table SourceTable
insert into SourceTable
select * from aTempTable
GO
Does this work for...
January 7, 2009 at 7:51 am
Viewing 11 posts - 31 through 41 (of 41 total)