Viewing 15 posts - 301 through 315 (of 322 total)
see SQL BOL.
Kishore.P
September 19, 2007 at 3:53 am
use BCP command.
For more information see SQL BOL.
Kishore
August 13, 2007 at 4:18 am
Instead of using RDO's use ADO's.
July 17, 2007 at 1:02 am
It gives an error, see below line.
Error 1 'byte' does not contain a definition for 'maxvalue'
April 24, 2007 at 7:40 am
Hi
You can do the following way,
> Create a primary key on ReferenceNo column or ReferenceNo column is an Identity.
> All the operation can be handled in stored procedure.
Hopes to...
March 7, 2007 at 4:16 am
Can u try it,
create
view vwTranspose
as
select
ID
,
Amount_Type
,
Amount_Description =
March 7, 2007 at 4:08 am
Can u try it for the following way:
Ex:
create
table t
(
id int not
March 7, 2007 at 4:01 am
Using Import / Export, you can transfer all the data into new Database. This method may solve your problem.
Just Try it.
February 21, 2007 at 12:04 am
February 20, 2007 at 2:22 am
you can develop your own application in the following way:
Method: 1
-> Develop an application using C#.NET, VB.NET, VB 6.0
-> Design the GUI as per your requirements and download the file...
February 20, 2007 at 2:13 am
Can u try the following way:
create
procedure spGetRows
(
@TopRows int)
as
begin
set
February 20, 2007 at 1:54 am
Better to do this in offline mode.
February 19, 2007 at 3:03 am
Yes.
Read the following links:
http://www.microsoft.com/technet/prodtechnol/sql/2000/downloads/servicepacks/sp4.mspx
February 19, 2007 at 3:01 am
USE sp_rename built in function.
Ex:
USE AdventureWorks;GOEXEC sp_rename 'Sales.SalesTerritory.TerritoryID', 'TerrID', 'COLUMN';GO
February 19, 2007 at 2:46 am
Just try the following command and check output:
DBCC CHECKDB([<dbname>])
and also check the rest of parameters in SQL BOL.
March 5, 2006 at 10:55 pm
Viewing 15 posts - 301 through 315 (of 322 total)