Viewing 15 posts - 316 through 330 (of 395 total)
March 7, 2004 at 3:07 am
I found some different ratings to this articles.
It will be better to get a feed back rather than just a rating.
Is there any way that I can see who rated...
March 7, 2004 at 2:47 am
Jim Underwood ,
I also found it unreadble. I think this formatting is introduced when publishing the artcle.
March 7, 2004 at 2:44 am
Thankx Frank,
I wonder y they have not doucmented.
I fonund folowing code from the internet
DECLARE @version VARCHAR(100)
EXECUTE master.dbo.xp_regread 'HKEY_LOCAL_MACHINE',
'SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\CurrentVersion',
'CurrentVersion',
@version OUTPUT,
'no_output'
March 3, 2004 at 4:03 am
I agree with u Frank Kalis
Even you can get more points by posting same twice.
Even for the replices like 'Thankx' you will...
March 3, 2004 at 3:28 am
if exists (select * from tempdb..sysobjects where id = object_id('tempdb..#t_sp_who_output'))
drop table #t_sp_who_output
go
CREATE TABLE #t_sp_who_output (
[spid] [smallint] ,
[ecid] [smallint] ,
[status] [nchar] (30) ,
[loginame] [nvarchar]...
March 2, 2004 at 11:44 pm
From BOL. I think u will get ur answer from this
Microsoft® SQL Server™ can operate in one of two security (authentication) modes:
March 2, 2004 at 9:23 pm
better if u can put the name of the poster in the emial body as well
March 2, 2004 at 3:17 am
March 2, 2004 at 12:48 am
This is BOL says
This error occurs when the nonclustered index indicated by the index ID is in error. The corruption is detected when a process tries to delete a nonexistent...
March 1, 2004 at 11:27 pm
I got your point now
Thankx
I thought u were saying some error in my method.
March 1, 2004 at 11:20 pm
Use OPENXML
DECLARE @idoc int
DECLARE @doc varchar(1000)
SET @doc ='
<ROOT>
<Customer CustomerID="VINET" ContactName="Paul Henriot">
<Order CustomerID="VINET" EmployeeID="5" OrderDate="1996-07-04T00:00:00">
<OrderDetail OrderID="10248" ProductID="11" Quantity="12"/>
<OrderDetail OrderID="10248" ProductID="42" Quantity="10"/>
</Order>
</Customer>
<Customer CustomerID="LILAS" ContactName="Carlos Gonzlez">
<Order CustomerID="LILAS" EmployeeID="3"...
March 1, 2004 at 11:13 pm
NO SIR,
If I didn't update just after reading there is chance of getting same number for both records.
To avoid that I am updating the Next number Just after reading.
March 1, 2004 at 10:02 pm
My argument is if both users are using same type. they will get same number there can be duplicate number unless u update it just after reading.
March 1, 2004 at 9:24 pm
OK Frank Kalis
Say I have 1000 records
And i have open ado which has page size = 100
there fore there are 10 page
If...
March 1, 2004 at 1:47 am
Viewing 15 posts - 316 through 330 (of 395 total)