Viewing 15 posts - 841 through 855 (of 5,356 total)
Okay, okay, I'll help you a bit with searching
http://www.microsoft.com/sql/techinfo/tips/administration/resultset.asp
March 1, 2005 at 6:43 am
Why is there no Primary Key on that table? Almost all solutions you will find when you search the fora here or google for SQL Server and paging will rely on...
March 1, 2005 at 6:08 am
Have a look here for a large database in SQL Server:
http://www.microsoft.com/sql/techinfo/administration/2000/rosetta.asp
March 1, 2005 at 5:20 am
I might be wrong, but I don't think there is an easy for this in an existing table. I would guess the way looks like.
- add a new column (tempcol)
-...
March 1, 2005 at 5:14 am
March 1, 2005 at 5:02 am
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=16769
Read Jonathan's response there. And ignore the strange formatting as this was written in the former forum software package and migrated.
For your question specifically, here's the management summary:
1. Production...
March 1, 2005 at 4:54 am
http://www.pinnaclepublishing.com/ME2/Audiences/default.asp is another one. I think, given the three alternatives now, this is the most expensive one, which might the K.O. criteria here.
March 1, 2005 at 1:58 am
Did you read the article? The fn_* prefix is only requirement. Additionally it *must* be created in master, be named all in lowercase and be owned by the system_function_schema. These steps...
March 1, 2005 at 1:04 am
Well, the problem with that is when the table is created, I do a
create table(
TableIdCol...
primaryKey(TableIdCol)
)
So, now you've got a good reason to care for the names of your object...
March 1, 2005 at 12:54 am
alter table ... drop constraint < your name > should do
February 28, 2005 at 9:02 am
You should make up a new thread for these new questions. Most people will scan the subject and therefore might miss this one. I for myself don't know anything about...
February 28, 2005 at 7:16 am
Piggy-backing on AJ, every now and then one can read, that you can workaround this "limitation" by utilizing a view. Now, consider this:
USE northwind
GO
CREATE VIEW foolview
AS
SELECT
GETDATE() AS Jetzt
GO
CREATE FUNCTION...
February 28, 2005 at 7:13 am
Viewing 15 posts - 841 through 855 (of 5,356 total)