Forum Replies Created

Viewing 15 posts - 46 through 60 (of 85 total)

  • RE: Can't install SQL 2008 Management Tools on Vista 64

    No, what is happening is when I run setup I get the main installation screen along with the three setup programs starting) and when I click the installation link on...

  • RE: No full text languages

    Has there never been a solution to this? I just did a new install of 2005 EE SP2 with Advanced services (i.e. Full-Text Indexing) and it is having this...

  • RE: select into/bulkcopy

    I test every scenario and it never changed the recovery model to bulk logged. It may have something to do with the fact that I can't set "select...

  • RE: select into/bulkcopy

    ok, that's what I read it to say so my misunderstanding. However, another interesting thing is that I ran this statement:

    sp_dboption 'MyDatabase', 'select into/bulkcopy', 'TRUE'

    and it didn't change to...

  • RE: Attach MDF file with no LOG

    I don't think this procedure would have help in my situation. I had a database server crash (while doing backups) and the log was corrupted. Tried to do...

  • RE: Attach MDF file with no LOG

    This would have been good information to know two months ago. I love undocumented commands, especially when they have been documented.

  • RE: Attach MDF file with no LOG

    If the files were not detached (using sp_detach_db) succesfully then you cannot not use sp_attach_db. The key here is detached "successfully".

  • RE: insert - select not ordering data properly

    I don't order the select from teh temp table that way since I'm using the temp table to select a page.

    EX:

    SELECT *

    ...

  • RE: insert - select not ordering data properly

    The select statement that is used for the insert has an order by on it. Here's the temp table definition and the insert-select statement:

    CREATE TABLE #tmp (rownum int identity(1,1) not...

  • RE: Deleting text data

    I was refereing to the size of the table as reported by sp_spaceused (i.e sp_spaceused 'tablename').

  • RE: Partitioned view on tables with text field

    You guessed it, I forgot to make it a UNION ALL.

  • RE: higher reads when using ADO.NET thatn when using Query Analyzer

    It looks something like this:

                Dim sqlCmd As New sqlCommand()

                Dim myReader As SqlDataReader

                With sqlCmd

                    .Connection = cn

                    .CommandType = CommandType.StoredProcedure

                    .CommandText = "dbo.myProc"

                    .Parameters.Add(new...

  • RE: Question of the Day for 11 Aug 2004

    The people that answered NO did so because they know that the only source of this information is from the sysprocesses table and creating a sp as a proxy to...

  • RE: IDENTITY - cannot turn it off

    It must be done in the same QA window in which you executed the SET IDENTITY_INSERT statement. 

  • RE: Replication Gotcha - Columns with Defaults

    So, to test your theory did you create default on the subscriber with the same name as on the publisher then try and drop the column?

Viewing 15 posts - 46 through 60 (of 85 total)