Viewing 15 posts - 166 through 180 (of 223 total)
is there anywhere else i can practice test questions which is not breaking violations..
July 8, 2009 at 6:58 am
You can use the import Wizard in SSMS, by rt clicking on the database - Tasks - Import data.
July 8, 2009 at 4:53 am
/* CREATE A NEW ROLE */
CREATE ROLE Rolename
/* GRANT EXECUTE TO THE ROLE */
GRANT EXECUTE TO Rolename
July 7, 2009 at 8:39 am
Is there a reason why you don't want to use SSIS or DTS?
July 7, 2009 at 8:29 am
Try this:
select * from tablename where fieldname like '%32062%'
July 6, 2009 at 3:22 pm
Something in the lines of this should work...
select sum(field1),datepart(mm,billingdate) as month
from tablename
where billingdate between '2009-06-01 09:00:00' and '2009-12-01 08:59:00'
group by datepart(mm,billingdate)
July 2, 2009 at 4:08 pm
Thanks Jack. That's a very useful link. I have added that to my favourites. 🙂
July 2, 2009 at 9:26 am
Try this:
SELECT J.name AS JobName
, L.name AS JobOwner
FROM msdb.dbo.sysjobs_view J
INNER JOIN
master.dbo.syslogins L
ON J.owner_sid = L.sid
June 24, 2009 at 3:43 pm
Please try this as far as update statement is concerned.
UPDATE Audit
SET a.BatchID = b.Id
FROM Audit a inner join Batch b on a.BatchCode = b.Name
AND a.BestBeforeDate = b.BestBefore
AND a.ProductionDate = b.ProductionDate
As...
June 24, 2009 at 4:55 am
Viewing 15 posts - 166 through 180 (of 223 total)