Viewing 15 posts - 916 through 930 (of 1,271 total)
I don't see the -ReplicationType flag in your command. Perhaps it is optional in SQL 2000 but required in 2005. I'm guessing on this one. Try adding the flag to...
December 14, 2006 at 2:47 pm
There is an issue with using sp_rename. It does not trigger a DDL event. So if you have Database or Server Triggers that are watching for DDL events, then you...
December 14, 2006 at 2:16 pm
Adding to what Mark posted above, this would show you the rows that were identical in both:
select * from Sep2006
INTERSECT
select * from Sep2005
December 14, 2006 at 2:08 pm
To be able to "Read" the mirror requires creating a database snapshot of the mirror database which requires the Enterprise Edition. Not worth the cost in my mind if the...
December 14, 2006 at 2:05 pm
The issue with aliases in SQL 2000 was if you had an alias that was the same as a column name, it would use the column in Order By clauses...
December 14, 2006 at 1:59 pm
The OS and/or other applications on the server are using too much memory. SQL Server can not get enough memory to run CLR.
Firt of all, you need more memory. I...
December 14, 2006 at 1:19 pm
I'm on the other side of the fence. It is in the standards i have written for developers to use. I require the use of nolock except in cases where...
December 14, 2006 at 1:13 pm
My boss asked me yesterday to tell him the size of our largest database and our average database size, so I wrote the following script yesterday that uses sys.database_files to...
December 14, 2006 at 1:08 pm
Why can't you just do this:
Declare
@strSQL nvarchar(max)
SELECT
@strSQL = '...
December 13, 2006 at 11:37 am
Since you're using SQL 2005, if you really want to have separate date and time columns, I would use a datetime column to store the datatime and then add 2...
December 11, 2006 at 12:50 pm
Just do check, do you have the .Net framword 2.0 installed on that server? Did you install Service Pack 1 for SQL Server Express?
December 8, 2006 at 11:12 pm
SQL Agent must not be needed for this then.
December 8, 2006 at 7:07 pm
To be honest, i've never used SQL Server Express. I would assume that it has it, but I can't be sure.
December 8, 2006 at 4:05 pm
Where are you seeing this? In the Management Studio? The little server in the registered servers with the green circle and a while triangle means that it is running. If...
December 8, 2006 at 2:12 pm
No, the MS tech was correct. SQL Server express can be the witness. I'm not using it as a witness in my environment, but many people are. What I am...
December 8, 2006 at 1:10 pm
Viewing 15 posts - 916 through 930 (of 1,271 total)