Viewing 15 posts - 7,096 through 7,110 (of 7,636 total)
Can you show us what you already have?
April 22, 2008 at 1:57 pm
Is this the link you were looking for, Steve? http://www.sqlservercentral.com/Forums/Group411.aspx
April 22, 2008 at 1:43 pm
Depending on the FK constraint, doing them in reverse order may work also.
April 22, 2008 at 1:40 pm
Eric Weinstein (4/21/2008)
April 22, 2008 at 1:32 pm
ishaan99 (4/21/2008)
00070111
0001111
00000111
00040111
00044111
000001111
I want a query which would get me all data preceding with 0's and ending as 1111. does anyone have a script...
April 22, 2008 at 1:12 pm
ksullivan (4/21/2008)
create table #xx (z1 varchar(10))
insert into #xx
select '00070111' union all
select '0001111' union all
select '00000111' union all
select '00040111' union all
select '00044111' union all
select '000001111'
select * from #xx
where convert(int,...
April 22, 2008 at 1:07 pm
Ron:
I am not convinced that that MS issue has anything to do with your problem since it was talking about assembly mismatches during serialization tasks.
I have sucessfully used SMO on...
April 22, 2008 at 1:02 pm
It should be released just like any other terminated process. Do you have reason to believe otherwise?
April 22, 2008 at 12:42 pm
peter Vramby (4/22/2008)
Memory\Page Faults/sec
average ...
April 22, 2008 at 12:37 pm
GSquared (4/18/2008)
April 22, 2008 at 12:28 pm
Also, you do not actually have Hard Page Faults listed anywhere in these statistics ("Page Reads/sec"). Pages/sec does not directly correspond with "Page Reads/sec" and a value of 40+...
April 21, 2008 at 2:06 pm
Something is wrong with these numbers. In particular:
peter Vramby (4/21/2008)
PhysicalDisk(0 C: )\% Idle Time1279.9485202866.299877PhysicalDisk(1 D: )\% Idle Time404.273847502866.033589
You shouldn't be getting Idle% greater than 100%. What is your...
April 21, 2008 at 1:58 pm
I have tried 2008 and I cannot find the Service Broker GUI. Can you point me to it?
Do you have any procs, functions, etc. that you use to make...
April 18, 2008 at 12:30 pm
I think that you would have you redefine the data after you pulled it out of the table/column by running it through a view or other virtual column that partitoned...
April 18, 2008 at 8:24 am
Viewing 15 posts - 7,096 through 7,110 (of 7,636 total)