Viewing 15 posts - 226 through 240 (of 395 total)
February 14, 2005 at 10:42 pm
If I can remeber correct there was article in SQLServeCentral.com. search the site. good luck
February 14, 2005 at 9:23 pm
select sum(cast( isnull([CostPriceTotal] ,0) as float)) will do
February 14, 2005 at 9:17 pm
Using unicode data types such as nchar, nvarchar, ntext will allow you to save in different languages.
I have done this for korean, chineese and english
February 14, 2005 at 9:08 pm
My personal view on the certification is, it is nice to have feature in you rather than a required feature. Having being in the database area for quite some...
February 14, 2005 at 9:01 pm
read the capacity specifications-SQL Server section of the BOL
February 13, 2005 at 10:57 pm
You can create table like this
CREATE TABLE [dbo].[t1] (
[date] [smalldatetimer], [amt_recharge] [int] NULL ,
[amt_food ] [int] NULL ,
[bc] AS ([amt_recharge] + [amt_food])
) ON [PRIMARY]
GO
February 13, 2005 at 9:21 pm
Search for the SQL80.col. If this is not in the pc then u hav eto install the book on line
February 13, 2005 at 9:16 pm
use this sp
CREATE PROCEDURE usp_DropColumn
@TableNameVarchar(50),
@ColumnNameVarchar(50)
AS
/*====================================================================================================
NAME: usp_DropcolumnTYPE: stored procedure (SQL 7)CREATION DATE: 08/01/01
USAGE:
DECLARE @TableNameVarchar(50)
DECLARE @ColumnNameVarchar(50)
SET @TableName = 'MyTable'
SET @ColumnName = 'MyColumn'
Exec usp_DropColumn @TableName, @ColumnName
PURPOSE: To Drop a Column from a Table...
February 13, 2005 at 7:58 pm
select * from sysobjects where xtype ='D' and parent_obj = OBJECT_ID('Table1')
above will give you all the default constrainst that the table1 has
February 12, 2005 at 10:51 pm
insert into tblStudent_Sponsor(intStudentID, intSponsorID)
select distinct studentid,sponsorid
from tblContractRates
remove values, for futher details refer the BOL
February 12, 2005 at 10:27 pm
HI Rohan,
I had the same porblem some time back.
I used VB exe to achieve this.
This vb reads the SQL script so that i don't have to change exe again and...
February 12, 2005 at 4:10 am
Viewing 15 posts - 226 through 240 (of 395 total)