Viewing 15 posts - 6,361 through 6,375 (of 7,499 total)
or mess with ansi padding ![]()
declare @tb table (col1 int identity(1,1) primary key
, mychar10 char(10) not null default('a')
, myvarchar10 varchar(10) not null default('b') );
set...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 17, 2006 at 6:01 am
aparently an I/O bottleneck![]()
- What's your drive(s) config ?
Maybe this helps a bit : http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=214046
(check the mentioned articles ! )
- http://www.sql-server-performance.com/performance_monitoring_tutor_part4.asp
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 17, 2006 at 12:27 am
did you change sqlserver service accounts ?
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 17, 2006 at 12:18 am
Indeed it says "Design Table"
(There is no identity-property on views ! )
Then select the column you want to autoincrement.
In the column...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 16, 2006 at 4:38 am
Don't delete your jobs, you will loose their history. ![]()
![]()
![]()
Here's a...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 1:33 pm
AFAIK the only db-level for SQL2005 to support are 70, 80 and 90.
Try the SQL2005 Upgrade Advisor to check your database.
You may even want to download sqlserver 2005 express edition...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 1:29 pm
How about using EXEC master..xp_logininfo @acctname = 'youruseraccount',@option = 'all'
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 7:04 am
let's just save time .... ![]()
In our company, Week no 1 is the week wich contains January 4-th.
I've implemented these UDFs :
Maybe this gets...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 6:36 am
Maybe you could start with http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
I don't know if there is a "emulate standard edition" switch ![]()
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 6:27 am
make that column an identity column.
Enterprise manager\yourserver\yourdatabase\tables\yourtable rightclick and edit.
Select the column and add the identity property.
Litle remark. When you enable the identity, you're nolonger alowed to use that column...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 5:29 am
Don't use the AWE because you don't have > 8Gb RAM.
Adding the /3Gb is enough.
Check out http://www.sql-server-performance.com/sql_server_performance_audit5.asp
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 3:56 am
declare @Serveradmin int
Select @Serveradmin = IS_SRVROLEMEMBER ( 'sysadmin')
print @Serveradmin
![]()
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 3:49 am
if you want to do this using SQLServer you can use xp_fixeddrives to see how much space is left on each (local) drive.
Create table #tmpDrives (Drive char(1), MBFree int)
insert into...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 3:38 am
It's not exactly what I was searching for, but maybe I'll comeup with it later : ![]()
- http://www.sql-server-performance.com/reducing_locks.asp
- http://www.sql-server-performance.com/sf_block_prevention.asp
- http://support.microsoft.com/kb/q193095/
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 15, 2006 at 12:54 am
I was aware of the concept you had in mind
, but I don't think this is implemented in sql2005.
I think Windows WLM...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Who am I ? Sometimes this is me but most of the time this is me
February 14, 2006 at 5:34 am
Viewing 15 posts - 6,361 through 6,375 (of 7,499 total)