Viewing 10 posts - 1 through 10 (of 10 total)
Robert Cain-464398 (12/11/2008)
Great find, putting "\" before and after my value fixed it for me.
putting "\" before and after my value worked for me as well.
September 28, 2011 at 12:02 am
SOLUTION: UPDATE STATISTICS on key table used within the query. My query returned in < 10 seconds where before I was killing it after 10, 20, 30 minutes...
September 12, 2011 at 6:35 am
One more solution without case statement found in another forum,
SELECT stuff(stuff(replace(str(run_duration,6,0),' ','0'),3,0,':'),6,0,':') FROM sysJobHistory
December 23, 2010 at 12:48 am
How to find the edition, service pack installed information for Analysis Server 2000 version?
Thanks,
Jagga
December 1, 2009 at 7:23 am
Thanks Adi,
This is what I was looking for.
Thanks for the answer.
September 29, 2008 at 4:00 am
Thanks Chris, but this will create new table not inserting into a existing table.
Regards
September 29, 2008 at 3:59 am
I tried the below one.
SELECT RS.*
FROM
( SELECT
DISTINCT EmployeeId
FROM
EmployeeBill ) AS EB
CROSS APPLY
(
SELECT TOP 3
E.EmployeeId,
E.EmployeeName,
E.EmployeeAdd,
BILL.BIllId ,
BILL.BillAmount ,
BILL.BillMonth
FROM
Employee E
INNER JOIN
EmployeeBill BILL...
March 19, 2007 at 11:38 pm
I come up with a solution (writing single SQL Statement) using CROSS APPLY Operator available on 2k5.
(The APPLY operator allows you to invoke a table-valued function for each row returned by...
March 16, 2007 at 4:23 am
Hi,
Try this,
Exec matser..xp_cmdshell '"\\Directory Name\BatchFile.bat"'
Let us know if this works for you.
Regards,
Jagga
March 14, 2007 at 12:25 am
Would in be possible to import these files into the DB ?
It is possible. I hope you are using data pump task to load the data into the DB. What...
December 1, 2006 at 11:10 pm
Viewing 10 posts - 1 through 10 (of 10 total)