Forum Replies Created

Viewing 15 posts - 5,851 through 5,865 (of 6,216 total)

  • RE: URGENT !! : SQLServerAgent could not be started

    Not necessary as long as its a standard reboot, not a pull the plug out of the wall reboot.

    Keep in mind there could have been another change made prior to...

  • RE: URGENT !! : SQLServerAgent could not be started

    It could be, but would be pretty rare - I've never seen it. What changed before it stopped working? Disk permissions? Account names? Install some new software, service pack, etc?...

  • RE: nonlogged insert

    I mentioned this earlier. DTS is easiest, BCP the fastest. I dont think you'll be disappointed with DTS.

    Andy

  • RE: Setting the error file for the package

    I made a quick package and saved as VB, looks straight forward, here is a snippet:

    Public goPackageOld As New DTS.Package

    Public goPackage As DTS.Package2

    Private Sub Main()

    ...

  • RE: Dependecies Question

    I created a view in Northwind as follows:

    CREATE VIEW dbo.vTest

    AS

    SELECT dbo.Categories.*

    FROM dbo.Categories

    GO

    Then ran:

    sp_depends 'vtest'

    Which returned:

    dbo.Categoriesuser tablenoyesPicture

    dbo.Categoriesuser tablenoyesrowguid

    dbo.Categoriesuser tablenoyesTestCol

    dbo.Categoriesuser...

  • RE: Includes in Query Analyzer?

    Sure, take a look at ISQL and OSQL.

    Andy

  • RE: SQL 2000 in a shared web hosting environment

    Redundant everything. For security, I'd say you have a couple choices. One would be grant DBO access to the client for their database, let them handle administration from there. As...

  • RE: Rounding Question???

    One way is to convert to a string, then truncate the extra decimal places you don't need.

    Andy

  • RE: Using sp_MSforeachdb in SQL6.5

    I dont have 6.5 installed ANYWHERE. Let me see what I can come up with. Steve?

    Andy

  • RE: Connecting to a SQL Server 7.0 across 2 networks

    Verify connectivity before you start with SQL. Can you ping the remote machine successfully?

    Andy

  • RE: SQL6.5 on Win2K Professional

    Check the licensing, maybe set to per connection. Can more than 8 connect to the server, or just not to SQL?

    Andy

  • RE: nonlogged insert

    In simple mode/truncate on check point what happens is SQL writes the action to the log, then applies the change to the db, then removes the action from the log....

  • RE: What are certification benefits???

    Forgot this about the costs: exams are $100, you'll need two books probably $70, I usually get one big book (Sybex, New Riders, whatever) and the Exam Cram. Transcender is...

  • RE: What are certification benefits???

    I'd suggest pursueing the 2k track, especially since you haven't started yet. I'd also suggest that you start with the SQL exams, something you're comfortable with. Use the eval if...

  • RE: Tempdb % Full

    Sp_spaceused would be a starting place. You could profile EM to see how its getting the info maybe, probably using DMO.

    Andy

Viewing 15 posts - 5,851 through 5,865 (of 6,216 total)