Viewing 15 posts - 6,646 through 6,660 (of 7,466 total)
you could add the old domain's user-SID to the new domain-user's sid-history.
As you can imagine, this is a windows-ad-operation, and not a sqlserver operation....
March 15, 2005 at 6:33 am
you may want to check out IDENTITY and scope_identity if you can live with gaps in your numberings.
March 15, 2005 at 6:25 am
we always set it to the max available blocksize and let sql handle it internaly.
March 15, 2005 at 6:20 am
Can't DTS help ?
(check out Enterprise manager, database, tables, rightclick and choose import data. The wizard will guide you )
March 15, 2005 at 6:17 am
In addition to sa24's advice, you can also use this delete-batch.It will take a while, but since transaction are kept small, interferance should...
March 15, 2005 at 12:14 am
CREATE TRIGGER Itr_T_Current
ON T_Current
FOR INSERT
AS
insert into T_History
select * from inserted
GO

March 15, 2005 at 12:07 am
maybe these resources can help :
- http://www.sqlservercentral.com/columnists/jsack/aweadventures.asp
- http://support.microsoft.com/default.aspx?scid=kb;%5BLN%5D;319942
- http://www.sql-server-performance.com/sql_server_performance_audit5.asp
- http://www.sql-server-performance.com/jc_sql_server_quantative_analysis7.asp
- http://www.sql-server-performance.com/awe_memory.asp
March 11, 2005 at 12:29 am
Keep in mind filegroup-files are balanced within a group, so your maxcapacity is the size of the smallest file * the number of files in the filegroup.
March 9, 2005 at 6:52 am
Is this what you're looking for ?
this query uses native sqlserver systemtables .
SELECT FG.groupid AS GroupID
, SUBSTRING(FG.groupname,1,30) AS FilegroupName
, SUBSTRING(O.name,1,30) AS ObjectName
,...
March 9, 2005 at 6:43 am
select dateadd(mm,yoursum,getdate() - getdate()) as yourTime_1900_01_01
check out dateadd in BOL
this example may help out :
March 8, 2005 at 7:31 am
I guess not. Maybe it only comes available if the log is rolledover
I've tested this small sample, and the restore to the new...
March 8, 2005 at 1:11 am
couldn't deduct that from the example
in that case , Helen 's response will work.
March 7, 2005 at 4:13 am
how about
--update A
--set reference = B.ContId
--, principal = B.Principal
--, book = B.book
--, strategy = B.strategy
select *
from TableA A
, TableB B
where B.reference = substring(A.trad_type,1,6)
March 7, 2005 at 2:39 am
is the connection working ?
March 7, 2005 at 2:33 am
Welcome !
What's the problem's errormessage ?
March 7, 2005 at 12:57 am
Viewing 15 posts - 6,646 through 6,660 (of 7,466 total)