Forum Replies Created

Viewing 15 posts - 391 through 405 (of 408 total)

  • RE: 4 hours to replicate 260MB ???

    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

  • RE: How does everyone backup?

    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...

  • RE: Restricting access from unapproved machines

    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...

  • RE: SQL2000 from Windows 2000 sp4 to Windows 2004 sp1

    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...

  • RE: Is there a better way?

    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 =...

  • RE: Select table from another Database

    Select * from test2..table2

    two dots.

    Joe

     

  • RE: Slowed Speeds: Hardware vs Software design

    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...

  • RE: Help: What to do when transaction log file is full

    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...

  • RE: Windows Authentication with EM

    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...

  • RE: SQL Server - database size and insertion rate

    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...

  • RE: Data centre failure

    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...

  • RE: Is it possible to send the log file to a NUL device?

    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...

  • RE: Query help

    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...

  • RE: SQL Parser!

    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.

     

  • RE: BCP

    Since you're using bcp for both export and import use bcp native type/data format (-n) rather than delimited/text (-c) for your file format and you should be fine regardless of the content...

Viewing 15 posts - 391 through 405 (of 408 total)