Viewing 15 posts - 16 through 30 (of 322 total)
bubu (5/12/2009)
May 12, 2009 at 4:05 am
you can transfer the data from one server to another, using linked server, openrowset, bcp for more info see SQL BOL.
May 6, 2009 at 8:11 am
kapalselambiru (5/6/2009)
May 6, 2009 at 7:45 am
BLADE (5/6/2009)
Hi experts,I am connected to database1 and i want to select a table from database2 .... ...what i want to do for that... ...........any advices may be helpful
also use,...
May 6, 2009 at 7:29 am
stelianx (5/6/2009)
DECLARE @input as decimal(16,6)
SET @input = 1.234567
DECLARE @precision INT
SET @precision = 2
...
May 6, 2009 at 7:03 am
you can use bcp command to process the flat files. this is very fast, for more info see SQL BOL.
May 6, 2009 at 6:43 am
try like the following
declare@sqlquerynvarchar (1000)
,@SQLOperatornvarchar (10)
,@DateTimedatetime
set@SQLOperator= '>='
set@DateTime= getdate ()
set@sqlquery= 'select * from sysobjects where crdate ' + @SQLOperator + ' ''' + convert (varchar (10), @DateTime,...
May 4, 2009 at 6:58 am
use dynamic query, for more info see SQL BOL.
May 4, 2009 at 6:11 am
use trigger on that table, for more info see SQL BOL.
May 4, 2009 at 4:38 am
kiranmca24 (5/4/2009)
so please give me the solution to import excel file into sqltable.
you can import data from excel file to sql table in many ways, like use OPENROWSET, for more...
May 4, 2009 at 4:28 am
nageswara.dhaveji (4/23/2009)
I have a doubt.. if one variable is having datatype as varchar in one table and integer in another table and when we are comparing both columns, will...
April 23, 2009 at 11:35 pm
check you query in Microsoft site.
April 23, 2009 at 11:34 pm
Depends on table structure and many other factors, provided information is in-sufficient. For more information see SQL BOL and search for "Database Design Considerations".
April 23, 2009 at 10:20 am
use the below code in your C# application:
DateTime.Now.ToString("G", DateTimeFormatInfo.InvariantInfo
for more information see help.
April 23, 2009 at 9:54 am
Viewing 15 posts - 16 through 30 (of 322 total)