Viewing 15 posts - 5,551 through 5,565 (of 7,502 total)
Maybe this gets you started...
Select M.BookId, D.[status], count(*) as NumberOfOccurrences
from [master Book table] M
inner join [details Book table] D
on M.bookID = D.BookId
Group by M.BookId, D.Status
October 15, 2007 at 7:49 am
it's sql 2005, wright ?
Compare the XML-plans. They provide more detail ...
October 14, 2007 at 1:36 pm
it will try to use the port it used the previous time, but if that port is unavailable, it will switch to anothre port.
So if you want to use kerberos...
October 12, 2007 at 10:28 am
IFAIK: no
SSMS ... maybe you mean the "registered servers" tab. (check BOL)
October 11, 2007 at 11:44 am
even if a job is disabled you can launch it manualy or using sp_start_job.
That's why I don't want sp_start_job in any application !
October 11, 2007 at 11:43 am
maybe 2 things:
1) provide indexes (2) for the dates, to support you and grouping
2) If you know you don't need to process the whole table , add an extra where...
October 11, 2007 at 11:38 am
A virtual pint of my favorite Geuze for SSC :w00t::cool::smooooth:
Hip, hip, hurray for the winners 😀
October 10, 2007 at 12:43 pm
maybe you're better off ftp-ing the backup file to a local drive of your target sqlserver server.
And the just perform a local restore without having to provide extra privileges...
October 10, 2007 at 3:40 am
I'm not MS, but tend to go for :
SIZE = according to your estimate + grow estimate Mb,
Filegrowth = NOT in percentages !
Avoid autogrowth if you can, so your file...
October 9, 2007 at 10:51 am
as you have noticed, SSIS itself is not instance aware.
So you can only have one active SSIS on a cluster :crying:
On the other hand, IMO MS is trying to push...
October 9, 2007 at 10:41 am
yes you can, if the login exists on the server.
October 9, 2007 at 10:35 am
I think I got this from SSC, but I cannot find the link:
-- Written by: Greg Larsen Date: 06/15/2002
-- All rights reserved Copyright 2002
set nocount on
DECLARE @I INT
DECLARE @C CHAR(8)
SET...
October 9, 2007 at 10:00 am
- grant the login the needed rights (tables, views, sprocs,fn,...)
- sp_changedbowner 'sa',true
October 9, 2007 at 9:56 am
thank you for the feedback.
Glad to see setspn solved your issue.
October 9, 2007 at 12:12 am
Viewing 15 posts - 5,551 through 5,565 (of 7,502 total)