Viewing 15 posts - 1,246 through 1,260 (of 1,999 total)
and how many results do you expect ? - can you post what you expect the final data to look like - because with only 2 columns in your table...
May 11, 2012 at 9:20 am
ljvarga (5/11/2012)
May 11, 2012 at 9:18 am
is it just because it's friday that the questions are getting worse?
May 11, 2012 at 9:10 am
FTP can be scripted - in ssis you could call a batch file which contains your FTP commands
try googling FTP scripting
May 11, 2012 at 9:07 am
joe
you really need to give us more information
do you have a network connection between the sites ? - how do you know which sites have db servers - how...
May 11, 2012 at 9:06 am
komal145 (5/11/2012)
dbo.Doc_activity and dbo.event_type
CREATE TABLE [dbo].[Doc_Activity](
[Entry_Id] [int] NOT NULL,
[Event_Type_Id] [int] NOT NULL,
[Event_Value] [varchar](1023) NULL,
[Event_Time] [datetime] NOT NULL,
[User_Name_Event] [varchar](200) NULL,
[Last_Updated_User] [varchar](1023) NULL,
[Last_Updated] [datetime] NULL
) ON [PRIMARY]
CREATE TABLE [dbo].[Event_Type](
[Event_Description]...
May 11, 2012 at 9:01 am
John Bates-251278 (5/11/2012)
I have configured CMS on my 2008 R2 server.
I have a CMS node containing several SQL 2005 server names.
I want to query info from those servers and...
May 11, 2012 at 8:50 am
off the top of my head this should do it
SELECT EmpCustom.EmpCustValue AS Team, Employee.Empfname + ' ' + WIP.WEmpLName AS Employee, WIP.WCltName AS Project, WIP.WSCDesc...
May 11, 2012 at 8:38 am
apostolis.karayiannis (5/11/2012)
My problem is the following:
I have a table (table A) that has several columns and each one of those columns has a description on the description property. I...
May 11, 2012 at 8:34 am
+1 lynn
the more info you give us and the clearer the question, the more likely you are to get a well formed and correct response.
look at it this way -...
May 11, 2012 at 8:16 am
elham_azizi_62 (9/27/2011)
I use this script for export query result to existing dbf file :
insert into openrowset ('MSDASQL','Driver=Microsoft Visual FoxPro Driver; SourceType=DBF; SourceDB=c:\Temp','select * from dskwor00')
select * from test
but get...
May 11, 2012 at 5:10 am
there is an issue with the 64 bit installation of windows - it doesn't install the MSDASQL drivers
May 11, 2012 at 5:09 am
kirkm 55368 (5/7/2012)
SELECT qryUC.Serial, qryUC.Title, qryUC.Artist, qryUC.Lyrics
FROM qryUC INNER JOIN tblAAA ON qryUC.Serial = tblAAA.Prefix
WHERE (((qryUC.Lyrics) Like "*climb*"));
So it's where instr(qryUC.Serial,tblAAA.Prefix) > 0.
I'm...
May 11, 2012 at 2:17 am
if forgot to add - there are certain limitations/ workarounds for the replace function with regards to length of the string being no more than 8000 characters (see books on...
May 11, 2012 at 2:08 am
Viewing 15 posts - 1,246 through 1,260 (of 1,999 total)