Viewing 15 posts - 46 through 60 (of 85 total)
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...
November 5, 2008 at 1:11 pm
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...
April 14, 2007 at 11:29 pm
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...
December 22, 2006 at 2:42 pm
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...
December 21, 2006 at 11:47 pm
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...
April 2, 2006 at 7:33 pm
This would have been good information to know two months ago. I love undocumented commands, especially when they have been documented.
March 31, 2006 at 2:24 pm
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".
February 23, 2006 at 5:42 pm
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 *
...
September 9, 2005 at 10:47 pm
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...
September 9, 2005 at 11:56 am
I was refereing to the size of the table as reported by sp_spaceused (i.e sp_spaceused 'tablename').
May 17, 2005 at 3:16 pm
You guessed it, I forgot to make it a UNION ALL.
December 27, 2004 at 3:31 pm
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...
December 6, 2004 at 8:07 am
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...
August 11, 2004 at 9:02 am
It must be done in the same QA window in which you executed the SET IDENTITY_INSERT statement.
June 3, 2004 at 8:09 am
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?
May 25, 2004 at 7:34 am
Viewing 15 posts - 46 through 60 (of 85 total)