Forum Replies Created

Viewing 15 posts - 44,776 through 44,790 (of 49,571 total)

  • RE: Server Logins

    Do you have the master database or a backup of the master database?

  • RE: SQL Server Vs Oracle

    60 million rows is not beyond SQL's capabilities. I've had more than that in a single table. The design needs to be done carefully, but it is possible.

    Are you expecting...

  • RE: SQL Server Vs Oracle

    Please don't cross post. It just wastes people's time and fragments replies. Many of us read all of the forums

    No replies to this thread please. Direct replies to

    http://www.sqlservercentral.com/Forums/Topic561824-149-1.aspx

  • RE: Local Temporary Tables and Table Variables

    Very nice.

    Just one small thing. You say that for data storage, temp tables are in TempDB and table variables are in memory and tempDB. I may be misunderstanding what you...

  • RE: Server

    It means that the OS has forced a lot of SQL's memory into the swap file. As the message says, it's near guranteed to result in poor performance.

    How much memory...

  • RE: Question about the account ##MS_AgentSigningCertificate##

    Is it enabled? (check the status tab of the login properties)

    I don't have that on my system, but the couple of ## logins I do have are disabled.

  • RE: Database Free Space

    Something like this should work. It's rough, but should give you the idea.

    CREATE TABLE #AllDbSpaceInfo (

    ...

    )

    exec sp_MSForEachDB ('Use ?; Insert into #AllDbSpaceInfo EXEC ....)

    SELECT * from #AllDbSpaceInfo

  • RE: Raid Crush Database Corruption

    Restore a backup? Depending on the type of corruption the built-in SQL tools may be able to repair them, or may not. If not, it's unlikely that a 3rd party...

  • RE: Restore with no backup

    Steve Jones - Editor (8/31/2008)


    You should probably read the security sections in Books Online to understand this.

    This in the wrong place?

  • RE: cannot attach database

    Steve Jones - Editor (8/31/2008)


    You can always call Microsoft PSS and perhaps they can help you with getting some data

    They won't help with that. I helped out with an unrecoverable...

  • RE: how to add or subtract a value from a sql database?

    Do you want help with the DB portion, the VB portion or everything? Can you show us what you have so far? (table structures at the least)

  • RE: cannot attach database

    Did you get the error exactly like that, with the %ls in it?

    I hope you have a backup. That kind of corruption isn't repairable and with a damaged file header...

  • RE: BULK UPDATES in 2005

    Even the update ran on only one thread. Both the cursor and the update maxed one of my processors for the duration.

    Probably a mixture of clock speed and that possibly...

  • RE: BULK UPDATES in 2005

    rbarryyoung (8/30/2008)


    It was very CPU-bound. I think that Gail's desktop is a lot better than my laptop. 🙂

    Probably. I've got a fairly new quad core with 4 GB...

  • RE: BULK UPDATES in 2005

    day (8/29/2008)


    Hi everyone,

    I was wondering has anyone competed CURSOR against INNER JOIN for bulk UPDATEs:

    Some reason you can't test it yourself?

    I'll bite...

    Tested on SQL 2008 RTM on a desktop.

    CREATE TABLE...

Viewing 15 posts - 44,776 through 44,790 (of 49,571 total)