Viewing 15 posts - 26,101 through 26,115 (of 26,487 total)
You can achieve HA using clustering or mirroring. It is possible to use both, I guess, if you weren't planning on shifting the databases between clustered servers. I think I...
April 16, 2007 at 7:37 pm
Personally, I would think that you'd want to do the partitioning first. I think it will involve more work to accomplish successfully, then do the HA project. I would not...
April 16, 2007 at 10:43 am
Okay, but if things change, please keep me in mind. I'd be more than happy to send you my resume.
April 13, 2007 at 9:11 am
Try this code:
CREATE PROCEDURE spClientContact
@CustomerID int,
@RecruitingOnly bit = 0
AS
BEGIN
SET NOCOUNT ON;
SELECT
ID_Contact,
ID_Customer,
FirstName + ' ' + LastName AS Name
FROM
tblContactPersons
WHERE
(@Recruiting = 0
and ID_Customer =...
April 13, 2007 at 8:42 am
Never mind my last post, I missed something. Give me a couple of minutes.
April 13, 2007 at 8:38 am
Try this instead:
CREATE PROCEDURE spClientContact
@CustomerID int,
@RecruitingOnly bit = 0
AS
BEGIN
SET NOCOUNT ON;
SELECT
ID_Contact,
ID_Customer,
FirstName + ' ' + LastName AS Name
FROM
tblContactPersons
WHERE
ID_Customer = @CustomerID
and (@RecruitingOnly =...
April 13, 2007 at 8:37 am
If I am like most people, I could always use some extra money. Only question I have is are you will to work with someone out of country for freelance...
April 13, 2007 at 8:29 am
Here is an excerpt from the licensing document from Microsoft:
For Workgroup, Standard and enterprise edition, each virtual operating environment running SQL Server 2005 must have a processor license for...
April 12, 2007 at 3:18 pm
Are you looking at only running the database portion of PeopleSoft on a 64-bit server? We run PeopleSoft Financials and HR here (Finance is at 8.9, and HR is on...
April 12, 2007 at 1:22 pm
If I remember correctly, and you may want to verify this on the Microsoft website, SQL Server needs to be licensed seperately on each virtual server. I was looking at...
April 12, 2007 at 10:34 am
Using the above, I would make one change (you actually have two choices for this one change):
DECLARE @Location VARCHAR(2000)
set @Location = '' -- this
SELECT @Location = @Location +...
April 12, 2007 at 7:56 am
Is your company in the process of purchasing SQL Server 2005 Enterprise Edition? The evaluation copy is the Enterprise Edition that expires after 120 or 180 days, depending on how...
April 11, 2007 at 10:24 am
You could use dynamic sql in your stored procedure. It would look sort of like this:
declare @SqlCmd nvarchar(4000)
set @SqlCmd = N'use msdb;exec your procedure'
exec @SqlCmd
hth
April 11, 2007 at 10:15 am
Could you post the SQL you are using to restore the database?
April 11, 2007 at 10:08 am
Part of the problem could be that you have SQL Server on domain controller. That alone could take up quite a bit of system resources even if there are only...
April 11, 2007 at 10:06 am
Viewing 15 posts - 26,101 through 26,115 (of 26,487 total)