Viewing 15 posts - 16 through 30 (of 43 total)
How do you want to keep it in sync? nightly, hourly? There are many solutions depending on which type of availability you are looking for.
March 26, 2008 at 9:42 am
Is it using a connection to sql server. If so you can find out the spid by doing a sp_who2 and dbcc inputbuffer and kill the spid. I...
March 25, 2008 at 3:19 pm
Try this one
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
/****** Object: Stored Procedure dbo.USP_GEN_USER_RIGHTS_BASED_ON_EXISTING_LOGIN Script Date: 10/21/2002 6:56:14 AM ******/
CREATE PROCEDURE USP_GEN_USER_RIGHTS_BASED_ON_EXISTING_LOGIN
@OLDLOGIN...
March 5, 2008 at 1:56 pm
I had to use a relay in order for my database mail to work. There is another way you can email that is using xp_sendmail.
bring up sql server 2005...
November 5, 2007 at 12:32 pm
did you create and instance on the sql server 2005. you may need to connect stating the server name and the instance for ex:
servername\instancename
November 5, 2007 at 12:25 pm
Did you have any of the other sql server applications installed on this server. for example sql server express. I have found that if you already have express installed...
November 5, 2007 at 12:19 pm
I had the same issue and found out that they are suppose to fix these issues with sp2. I still havent installed sp2 so I am not sure if...
November 5, 2007 at 12:13 pm
There are normally two cds associated with it. I had the same issue and had to install the second cd which included the client tools.
November 5, 2007 at 12:12 pm
Thanks that will work. I am still going to keep writing the cursor just for fun
July 11, 2007 at 9:57 am
I had a similar situation regarding my database growing to large and it was due to dropping and creating indexes on our nightly process that does quite a lot of...
July 10, 2007 at 1:51 pm
use <database>
insert into <table_name>
SELECT table_name FROM information_schema.tables
WHERE table_type = 'base table'
February 26, 2007 at 11:35 am
Jar
The hostname is going to just give you the name of the server you are running the trace from. If you have a chance to run the trace and monitor...
December 4, 2006 at 4:26 pm
Actually. I didnt realize that the data file was still there when I restored the database so the data filed doubled in size. is there a way to shrink the...
October 10, 2006 at 10:18 am
Viewing 15 posts - 16 through 30 (of 43 total)