Viewing 12 posts - 1 through 12 (of 12 total)
Thanks for the early Reply & it is working with the collation mentioned by you.
I had one doubt here. How it is working with default collation for non unicode...
June 27, 2011 at 5:50 pm
Hi Remi ,
The above query will work fine with the above data .If a record exists with 'New Claim' and Valid EndDate Value.Then it will fail. I think following...
August 18, 2005 at 12:57 am
SELECT ROUND(0.4799608993157, 3, 1) will return result as
.4790000000000
SELECT CONVERT(DECIMAL(10, 3),ROUND(0.4799608993157, 3, 1)) will return result as
.479
Thanks,
Murthy
August 9, 2005 at 11:36 am
Hi,
The same is possible with simple Set RowCount
Set rowcount 10
UPDATE table_info
SET q_active = '1'
WHERE table_info.pkfield in (select top 10 pkField from table_info where table_Info.q_active = 0)
Thanks,
Murthy.
August 9, 2005 at 7:12 am
SELECT CONVERT(DECIMAL(10, 3),ROUND(0.4799608993157, 3, 1))
This will give result as .479
August 9, 2005 at 6:53 am
Hi Sergiy,
The following method will return all the Sheet Names as a Collection.U need to pass the Excel File Name as param to this method.
Public
August 2, 2005 at 4:51 am
Hi,
This is other way of getting all the DataBase Names ,that has permissions for the current User.
that has permissions for the current user.
Select CATALOG_NAME,SCHEMA_OWNER from INFORMATION_SCHEMA.SCHEMATA
Thanks,
Murthy.
August 1, 2005 at 9:43 am
Hi,
This is for ruturnin TOP 10
select top 10 customerid from Customers order by customerid
This is for returning Bottom 10
select top 10 customerid from Customers order by customerid desc
July 27, 2005 at 12:52 pm
Hai,
Please check that The columns Datatype in tje the table you are trying to view in Access may be Bigint. I had similar problem prev. After changing it to int ...
June 22, 2004 at 11:05 am
Hai,
Please check that The columns Datatype in tje the table you are trying to view in Access may be Bigint. I had similar problem prev. After changing it to int ...
June 22, 2004 at 11:05 am
Hai,
I wrote One procedure for this.
The Required Input Parameters are
TableName
ColumnValue
OutPutParamters are
IsReferenseExists Returns
1- for depency Records Exists
0- for no depency Records Exists
Create
June 20, 2004 at 10:48 am
Viewing 12 posts - 1 through 12 (of 12 total)