Viewing 15 posts - 91 through 105 (of 5,355 total)
Even I have to work sometimes. Apparently more than Remi at the moment.
Btw, regarding the samples out there. SQL Server 2005 will ship...
June 22, 2005 at 4:58 am
No, it is NOT true!
The article I've mentioned and the link to Tara Duggan's blog mention NONUNIQUE CLUSTERED INDEXES. This is different from a UNIQUE CLUSTERED INDEX. Internally EVERY clustered...
June 22, 2005 at 3:08 am
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/ss2kidbp.mspx
Make sure you read closely through the http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/ss2kidbp.mspx#EEAA chapter
Found it somewhere on the MS TechNet site
June 21, 2005 at 2:43 pm
If you should experience any issues (which is very unlikely), you can always recreate PUBS from your ...MSSQL\INSTALL\instpubs.sql file.
June 21, 2005 at 1:25 pm
Just out of curiosity: Are you going to dig out all the old threads where this what the topic?
June 21, 2005 at 7:55 am
Have you already looked at the script section?
June 21, 2005 at 6:37 am
Ed already mentioned some aspects to consider. other aspects might be the separate backup process and the separate security that needs to be maintained.
Are those BLOBs "only" stored and viewd sometimes....
June 21, 2005 at 2:48 am
See if this helps: http://www.aspfaq.com/show.asp?id=2120
June 21, 2005 at 2:01 am
CREATE TABLE Foobar
(position INTEGER NOT NULL PRIMARY KEY
CHECK (position > 0),
foo_value CHAR(10) NOT NULL);
GO
INSERT INTO Foobar VALUES (1, 'abc')
INSERT INTO Foobar VALUES (2, 'def')
INSERT INTO Foobar VALUES (4,...
June 21, 2005 at 1:53 am
Thnks, I'm gng to do tht. I had it in my mind but I didn't have proper privillages to change it
If you don't have this privileges, but there is...
June 21, 2005 at 1:43 am
Search the site and/or google on Celko and hierachies
June 10, 2005 at 6:31 am
LIke Ian said, SQL Server only "stores" such data, but doesn't provide build-in functions to interpret them. That's the job of your client app. You might find some useful additional...
June 10, 2005 at 12:16 am
Yes, you're missing the fact that the original example will always fail. No matter if in a batch or a stored procedure. That's what I meant.
June 10, 2005 at 12:02 am
...Steve Jones in fine clothes...
Hm, will ping Steve for a prove here.
June 9, 2005 at 3:06 pm
Viewing 15 posts - 91 through 105 (of 5,355 total)