Viewing 10 posts - 16 through 25 (of 25 total)
You can get incorrect results, however, if the weighting of null characters is different between the federated database and the data source.
Likewise, for comparison statements, be careful if you are...
January 3, 2011 at 11:22 am
And what about try "Transfer database task" in SQL Server integration services to import remote databases and then you can do some comparations?
December 28, 2010 at 11:32 am
--change '%search string%' only
declare @num int, @count int, @exec nvarchar(500), @find nvarchar(50)
set @find =
declare @tab as table (TABLE_SCHEMA sysname,TABLE_NAME sysname,COLUMN_NAME sysname,Row_Number int primary key)
if (select OBJECT_ID('tempdb..#tab2')) is...
December 28, 2010 at 9:30 am
declare @name sysname
select top 1 @name=SPECIFIC_NAME from INFORMATION_SCHEMA.ROUTINES
where ROUTINE_TYPE='PROCEDURE' AND ROUTINE_SCHEMA='ABC'
while (@name is not null)
begin
execute( 'ALTER SCHEMA XYZ TRANSFER ABC.' + @name);
select top 1 @name=SPECIFIC_NAME from INFORMATION_SCHEMA.ROUTINES
where ROUTINE_TYPE='PROCEDURE'...
December 28, 2010 at 8:13 am
SQL server take more RAM, if SQL sever need it.
[p]But You can set: [/p]
[p]sp_configure 'max server memory (MB)',6144;[/p]
[p]sp_configure 'min server memory (MB)',6144;[/p]
[p]reconfigure with override[/p]
October 28, 2010 at 12:18 pm
source server= where is a backup
destination server= where you want to restore database
1. Create share on source server "share_name" - grant Everyone Read
2. Grant read permissions on the source server...
July 22, 2010 at 8:46 am
It seems problem with spn. When sql server starts, it creates spn in Active Directory. The SPN is an object in Active Directory. You can set the permissions with adsiedit.msc....
May 21, 2009 at 7:53 am
How Can I stop SQL Server Service ...?
If it is cluster you need run cmd:
cluster . res "SQL service name" /off
May 21, 2009 at 6:43 am
Viewing 10 posts - 16 through 25 (of 25 total)