Viewing 15 posts - 5,851 through 5,865 (of 7,168 total)
SkyBox (6/26/2011)
opc.three (6/24/2011)
June 26, 2011 at 8:00 am
Have you looked at the XML of the package? It might be as easy as creating and adding your own XML nodes to the file. If it looks doable you...
June 25, 2011 at 6:09 pm
Why in the world would you ever want to even attempt that?
June 25, 2011 at 5:55 pm
Regarding collations:
I have seen folks on this site posting problems related to storing data in two different languages in the same column.
Regarding file storage:
Here is a good whitepaper I have...
June 25, 2011 at 5:53 pm
See if this gets you close:
http://www.sqlservercentral.com/Forums/Topic872499-146-1.aspx#bm872724
June 25, 2011 at 5:23 pm
I would not use a trigger in this way. Avoid triggers where possible. Is it necessary here? Why not allow the bulk copy to complete and then call a stored...
June 25, 2011 at 5:16 pm
The only thing a VIEW can contain is a SELECT statement. What you want is a stored procedure. Or, if you change your concrete tables to table variables you could...
June 25, 2011 at 5:09 pm
patel.shashank702 18199 (6/22/2011)
Dear Sir,I wanna to Migrating a Visual FoxPro Database to a SQL Database.
kindly suggest me any possible tool or methods.
awaiting for ur response
thanks
Shashank Patel
http://blogs.msdn.com/b/sqlcat/archive/2008/01/25/foxpro-to-sql-server-migration-experience.aspx
As an aside, regarding you...
June 25, 2011 at 4:55 pm
tfifield (6/24/2011)
June 25, 2011 at 4:45 pm
In the case of all Unicode data you can use a binary collation to prevent the overlap of the number 2 with its superscript counterpart.
--CREATE TABLE STATEMENT
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER...
June 25, 2011 at 1:53 pm
A conversion is happening because you're asking to replace an NCHAR in a VARCHAR column.
--CREATE TABLE STATEMENT
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[TwoTable]
(
...
June 25, 2011 at 1:45 pm
Jayanth_Kurup (6/25/2011)
worktables use the collation as specified for the database in which the operation is being performed
Can you cite an article?
June 25, 2011 at 1:25 pm
http://ssisextensions.codeplex.com/ is 2008 only.
Cozy Roc has a 2005 component but I just looked at it and it appears as if it support OpenPGP only, i.e. it does not support Idea....
June 25, 2011 at 12:59 pm
Viewing 15 posts - 5,851 through 5,865 (of 7,168 total)