Viewing 15 posts - 286 through 300 (of 361 total)
Good story, sounds like you had fun...
Btw you say "though in SQL 2000 there is array processing." Perhaps I am being a little daft - but could you explain? ...
October 19, 2006 at 4:00 am
N makes it unicode. Why? Well I don't think it matters with your example, but with some exciting unicode characters it makes all the difference!
October 18, 2006 at 7:09 am
thats the sqlserver:databases transactions/sec
Its broken down by database.
October 10, 2006 at 9:32 am
You could run a sysmon (or whatever its called these days) server (not sql) trace and capture the av transactions per second.
October 10, 2006 at 9:29 am
you could do something like
select object_name(id), rows from sysindexes sjoin mytable mon object_id(m.name) = s.idwhere indid = 1and rows = 0October 3, 2006 at 10:20 am
Its probably good to have a clustered index anyway, otherwise you simply have a heap structure. On that many records it would be good.
You need a primary key - and...
October 3, 2006 at 9:01 am
My understanding is that 090 is 90. An int will convert it.
Your best bet is to use a varchar field with a constraint on it.
Unless anyone knows better?
October 3, 2006 at 8:58 am
Thanks John, an interesting idea. I am almost tempted to go a step further and use a raw partition. However its all complicated due to the 2 log shipped databases...
October 3, 2006 at 7:10 am
You could have a look and check what the collations are on the various char columns, if they are different on 1 table it _might_ make a difference?
October 3, 2006 at 6:36 am
Hi
I assume you are using convert to get to a round date rather than the full datetime. I rather think that as you are looking to examine every record, indexing...
October 3, 2006 at 6:29 am
Does installing them on seperate servers require extra licensing?
I will research it myself, but if anyone already knows...
September 26, 2006 at 8:03 am
Its entirely possible I am talking about something else here, but you decide!
I have had fairly similar issues when using active directory security and the link to the ad server...
September 26, 2006 at 8:01 am
Thanks for the response.
fyi Blackbox trace basically stashes the last 10mb of trace data:
TRACE_PRODUCE_BLACKBOX Specifies that a record of the last 5 MB of trace information produced by the server...
August 24, 2006 at 9:18 am
I guess you could dump the contents of sp_helpfile into a table, strip the text out of the size field, and then run the alter database on that basis.
Probably an...
August 24, 2006 at 4:33 am
BOL:
This example increases the size of one of the files added to the Test1 database in Example B.
USE master
GO
ALTER DATABASE Test1
MODIFY FILE (NAME =...
August 24, 2006 at 4:28 am
Viewing 15 posts - 286 through 300 (of 361 total)