Viewing 15 posts - 226 through 240 (of 323 total)
If table structure already exist, use BCP or BULKINSERT command.
Otherwise use select * into ]
October 13, 2008 at 5:20 am
Check the local area network DNS (i.e. TCP/IP) properties and other settings.
October 13, 2008 at 4:30 am
Try the following way:
declare@sqlnvarchar (1000)
set@sql= N'SELECT * FROM openquery (linked_server, ' + '''SELECT SERVERPROPERTY (''''ProductVersion'''') AS [Product Version]'')'
print@sql
execsp_executesql @sql
go
🙂
October 13, 2008 at 3:19 am
after that use DBCC UPDATEUSAGE ([DBNAME])
🙂
October 13, 2008 at 2:18 am
provide Windows 2003 IP Address in ODBC Configuration (instead of SQL Server name).
Note: Also check whether Windows 2003 server is accessable from Win XP command prompt.
October 13, 2008 at 1:15 am
Ok, use left (..., 15) only. Copy the below code and try it again.
selectreplace (replace (left (replace (replace (convert (varchar, getdate(), 120), '', ''), ':', ''), 15), '-', ''),...
October 13, 2008 at 1:06 am
Try the following way, it may help to you.
selectdistinct object_name (id) from syscomments where text like '% %'
October 13, 2008 at 12:57 am
Try the following way:
selectreplace (replace (left (replace (replace (convert (varchar, getdate(), 120), '', ''), ':', ''), 16), '-', ''), ' ', '') + '.txt'
🙂
October 13, 2008 at 12:50 am
You can see the BACKUP DATABASE command on SQL BOL.
October 10, 2008 at 1:25 am
you mean System Database or User Databases ?
October 10, 2008 at 1:10 am
> Copy the SQL Server Data folder into new location
> un-install previous version and install SQL 2005 / 2008 Express / Developer / Enterprise edition
> New you can attach the...
October 10, 2008 at 1:08 am
If you have MSDN Subscription, you can download Developer Edition from Microsoft.
October 9, 2008 at 11:11 pm
This problem occurs SQL 2005 onwards., Generally DBA's change the SQL Server permission, i.e. means allow the remote users.
October 9, 2008 at 10:45 pm
Check the Wrox Publication books. These books help to you.
September 3, 2008 at 6:53 am
First collect the entire spec for your project (including reports) and design them according. Depending on your daily transaction you can design the database up to 3rd or 4th...
August 20, 2008 at 9:07 am
Viewing 15 posts - 226 through 240 (of 323 total)