Viewing 15 posts - 2,086 through 2,100 (of 5,356 total)
Well Andy, welcome to the club!
I believe everyone in your life is providing now valuable suggestions (at least they try 😉 ), so just one thing from me:
While the first...
May 17, 2004 at 6:34 am
Probably the easiest way to achieve this is to recreate the clustered index on this new filegroup. If you don't have a clustered index, you can still use this technique,...
May 10, 2004 at 1:10 pm
Well Jeff, nothing I would recommend, but I was once confronted with this problem after using the Copy Database Wizard to migrate from 7.0 to 2000. I ended up reconfiguring...
May 10, 2004 at 1:06 pm
Okay,
CREATE TABLE a_test
(
col1 INT IDENTITY
)
GO
INSERT INTO a_test DEFAULT VALUES
INSERT INTO a_test DEFAULT VALUES
INSERT INTO a_test DEFAULT VALUES
INSERT INTO a_test DEFAULT VALUES
SELECT * FROM a_test
DBCC CHECKIDENT(a_test,RESEED, 99)
INSERT INTO a_test DEFAULT VALUES
SELECT...
May 10, 2004 at 6:12 am
If you're looking for a way to explicitely insert values into such a column take a llok at SET IDENTITY_INSERT ON/OFF in BOL.
BTW, I would prefer using SCOPE_IDENTITY() rather than...
May 10, 2004 at 5:52 am
Sorry, couldn't get the formatting correct. Try it out and you will see what I mean
May 10, 2004 at 1:11 am
Okay, the remark about the Upsizing Wizard was more or less a joke. ![]()
IIRC the wizard converts all Access text fields to NVARCHAR columns.
As...
May 10, 2004 at 1:09 am
N' indicates Unicode.
People use it for international application with the needs to store *exotic* characters.
To be honest, I think most people use it because they never checked what the Access...
May 10, 2004 at 12:43 am
Hey, I won't tell you that directly. But a good start would be to google on those words.
![]()
May 7, 2004 at 6:07 am
Look at CREATE PROCEDURE in BOL
CREATE PROC [ EDURE ] [ owner. ] procedure_name [ ; number ]
[ { @parameter data_type }
...
May 7, 2004 at 5:15 am
Well, if we are only talking on how to track db growth, here are some techniques by Vyas Kondreddi.
May 7, 2004 at 1:25 am
There is no such thing as rownum in SQL Server. If you're after some sequential numbering this one might be interesting.
May 6, 2004 at 1:22 am
AFAIK, EM uses an undocumented DBCC command
DBCC SHOWFILESTATS
May 6, 2004 at 1:19 am
![]()
Ever so often the same question with the same answer. Read this
http://www.sommarskog.se/dynamic_sql.html
and
http://www.sommarskog.se/arrays-in-sql.html
and http://www.rac4sql.net/xp_execresultset.asp
HTH
May 5, 2004 at 12:36 am
Viewing 15 posts - 2,086 through 2,100 (of 5,356 total)