Viewing 15 posts - 391 through 405 (of 408 total)
A little tongue in check but Question #1 would have to be: What changed on your network last week?
Beyond that, what type of replication, across what type/speed link?
Joe
October 12, 2005 at 9:38 am
Will -
You have my sympathy, the restoration of a server from scratch to pre-crash status is often a complex, time consuming and frustrating experience. Ideally...
October 12, 2005 at 2:13 am
Sounds like a good case for seperate windows security groups (e.g. development_users & production_users or some such)? Users can be members of one group, both groups or neither group...
Or is...
October 12, 2005 at 12:01 am
Since I'm running SQL Server 2000 on a bunch of Windows 2003 Server machines I know it can be done!
Without knowing more about your configuration there are a lot of possibilities...
October 11, 2005 at 11:30 pm
CREATE PROC USP_CalculateEconImpactDays @MeetingID INT, @MeetingEventCategoryID CHAR(1), @DelDays INT
AS
SET NOCOUNT ON
if @MeetingEventCategoryID = 'L'
select @DelDays * 175 AS LocalEconImpactDaysTotal
if @MeetingEventCategoryID = 'N'
select @DelDays * 420 AS NatEconImpactDaysTotal
if @MeetingEventCategoryID =...
October 10, 2005 at 11:41 pm
Select * from test2..table2
two dots.
Joe
October 8, 2005 at 12:58 am
Burt -
Before you run out and purchase a new server or even upgrade the existing server you need to get a handle on why your machine...
October 8, 2005 at 12:53 am
Couple of additional suggestions:
(1) You probably will want to set the database to "bulk logged" for the duration of your data load and then return it...
October 8, 2005 at 12:16 am
Would it be too much to ask for your database owners/object creators to specify that the object should be owned by dbo (e.g. create table dbo.tablename... rather than just create...
October 7, 2005 at 11:56 pm
I agree with Enthusiast, there are a lot of unanswered questions here.
I can safely say that a 40 million row table is no big deal assuming you're running on the...
February 22, 2005 at 10:03 pm
About 2 weeks after we moved into our current data center the whole data center went down for about 17 hours... freak problem caused an arc in the power room...
September 30, 2004 at 12:08 am
Just out of curiosity - what percent of the data in the table are you deleting?
Another possible solution would be to copy the data you wish to keep into...
August 25, 2004 at 9:32 am
JW this is a wag but what you probably need is two stored procedures (or one that returns multiple recordsets) to retrieve all of the information on a specific player, something...
July 5, 2004 at 10:44 am
Uh oh! Please google "sql injection" before you get to far along with your project, the type of application you are proposing is incredibly risky/dangerous.
June 30, 2004 at 1:21 am
Viewing 15 posts - 391 through 405 (of 408 total)