Viewing 15 posts - 5,551 through 5,565 (of 7,505 total)
Yes you can, but will it give you the result you expect ?
select top 1 field2
from yourtable
where field2 is not null
order by id -- if id is...
October 16, 2007 at 3:22 am
does he also know what composite material the engine of his care is made of ? :hehe:
Do I know what exotic language is used for the SQL-engine ? No
Do I...
October 16, 2007 at 3:04 am
1) keep in mind there is no order in a table's rows.
If you want results handled in a certain order, you should use an order by clause in your...
October 16, 2007 at 2:49 am
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
Viewing 15 posts - 5,551 through 5,565 (of 7,505 total)