Viewing 15 posts - 46 through 60 (of 247 total)
Thanks Lowell,
Can you shed some more light on accessing SQL Server DB Engine from an UNIX platform.
June 14, 2010 at 11:39 pm
Change it to the SIMPLE recovery Model.
Also, you might want to check for the active trancation before you do anything. run this to check the active transaction:
DBCC OPENTRAN
June 10, 2010 at 6:33 am
jai verma (6/9/2010)
we publish a application on citrix layer based on this dbserver
but...
June 10, 2010 at 4:02 am
Gopi Muluka (6/9/2010)
Try using IIF construct, Please remember you have to Microsoft Jet Database syntax while querying excel
SELECT CVV_CODE, CVV_OMSCHR
,IIF((STARTD_CVV='-'),NULL,STARTD_CVV) AS S
FROM [sheet1$]
Did...
June 10, 2010 at 3:55 am
da-zero (6/9/2010)
So, I would just read the contents of the file...
June 9, 2010 at 1:43 am
Below query is giving me desired output, but can we merge both these query to have just one single query:
SELECT cdi.xidxrecid,CFA.ORGID,
...
June 1, 2010 at 11:45 pm
Lowell (5/27/2010)
CFA.ORGID IN ('*','SERVICE','4C0C6A2U7P','4X9A8F2U5A')
but in the second part of the union...
May 27, 2010 at 7:08 am
Finally I was able to import the file. Though I had to change that file manually but now its over. Thanks.
May 25, 2010 at 11:59 pm
yup did it after changing to Raw data and then directly importing it through import/export wizard. so far running so good.
May 25, 2010 at 7:45 am
Lowell (5/25/2010)
May 25, 2010 at 7:11 am
Lowell (5/25/2010)
May 25, 2010 at 6:54 am
Chris Morris-439714 (5/24/2010)
DROP table #t1DROP table #t2
create table #t1 (catid int, orgid varchar(10))
create table #t2 (catid int)
insert into #t1 values (1,'PETER')
insert into #t1 values (2,'a01')
insert into #t1 values (3,'*')
insert into...
May 24, 2010 at 11:04 pm
Indeed a good article but practically difficult to use.
November 5, 2009 at 4:25 am
I raised it in connect. Lets see if they support it there.
October 12, 2009 at 4:22 am
Viewing 15 posts - 46 through 60 (of 247 total)