Viewing 15 posts - 3,766 through 3,780 (of 5,103 total)
Actually when you are consulting as a "freelance" things are very different you plan your vacations, you look for your own clients and you get usually a better deal in...
April 29, 2005 at 1:59 pm
>>> i want to replicate the dev db to live but this causes problems with the live text catalogs <<<
What Problems are you seeing ?
April 29, 2005 at 1:08 pm
After you Detach, the Database Properties is not available (you won't be abe to see it in EM any more until you attach)
By the way when you attach you will...
April 29, 2005 at 1:04 pm
....
While @@Fetch_Status = 0
BEGIN
Exec Master.dbo.xp_sendmail @MyRecipients, @MyMessage
Fetch Next From MyCursor Into @MyRecipients
End
....
Change the order ![]()
April 29, 2005 at 12:43 pm
I know some people that manage 200+ servers, for them 20 is small-ish
April 29, 2005 at 8:06 am
IF Object_id('##table') > 0
begin
...
end
... Tag Team strikes again ![]()
[edit:]
Remi, What do you mean by ...team tag team .. ?
April 28, 2005 at 2:56 pm
if exists (select * from
INFORMATION_SCHEMA.TABLES
where
TABLE_NAME = 'Your Table'
and
TABLE_TYPE = 'BASE TABLE' )
begin
--- create table ...
end
April 28, 2005 at 2:47 pm
Ross,
You still need a Primary Key to be able to determine which of the duplicates gets the First id or the second or the thrid ...
For example: