Viewing 15 posts - 181 through 195 (of 323 total)
use Microsoft SQL Server Database Publishing Wizard, using this tool you can take backup object wise.
November 6, 2008 at 10:53 am
SQL 2005 new features not supported in SQL 2000.
November 6, 2008 at 10:45 am
if you use nolock, you will get all the records (includes all uncommited transactions) but result is not accurate, if you are not using nolock, query will be wait till...
November 6, 2008 at 9:49 am
re-download the sp4 for SQL Server 2000 and installed it. Still problem persists, you can backup the respective databases and repair the SQL Server and install SP4.
November 6, 2008 at 9:26 am
First you need to install relevant JDBC / ODBC drivers to access SQL Server 2000 and below version, for SQL 2005 and above you need install SQL Native Client for...
November 6, 2008 at 9:20 am
if @db is int then you get the result.
November 6, 2008 at 9:17 am
try like this:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
set nocount on
go
alter proc dbo.inow6_AlterDatefield
as
begin tran
update in_doc
set F3 = stuff (F3, 3,1, '/')
from in_doc
where creation_usr_id = '2000000001_00011B3EPCXJ'
and creation_time >...
November 6, 2008 at 9:09 am
need more information (exact requirement) about question ? so that I can help.
November 6, 2008 at 8:31 am
Enable BCP option thro' SQL Server Surface Area Configuration.
or use sp_configure command
November 6, 2008 at 8:27 am
Just insert the DVD / CD and then choose repair or modify VS & SQL.
November 6, 2008 at 7:20 am
Generally "Times New Roman" font.
FYI:
http://www.sqldev.net/xp/xpsmtp.htm
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_21603633.html
November 6, 2008 at 7:13 am
try like:
select*
fromINFORMATION_SCHEMA.COLUMNS
whereCOLUMN_NAME = 'your column name'
go
November 6, 2008 at 6:39 am
one of the best method to upgrade from SQL 2000 to 2005 is attach and detach the .mdf files.
November 6, 2008 at 6:27 am
one more command available in SQL 2005, TableDiff.exe, try this command, for more info. see SQL BOL.
October 30, 2008 at 6:11 am
Viewing 15 posts - 181 through 195 (of 323 total)