Viewing 15 posts - 1,021 through 1,035 (of 5,103 total)
Would you alwys find "PPS" and "PAGES" on all your strings ?
July 15, 2008 at 11:27 am
did you try:
exec sp_removedbreplication
right after the restore ?
July 10, 2008 at 4:23 pm
shensarling (7/10/2008)
We have decided to set the Recovery Model of the database to Bulk-logged and then drop and recreate the index. After creating the index...
July 10, 2008 at 4:21 pm
PollingInterval too small is bad for the publisher as well as ReadBatchSize too big.
I would recomend you start with the defaults and only if you think is not good...
July 10, 2008 at 12:51 pm
You can use logon_triggers to limit your exposure and to log the IPs from where the attempts were made.
July 10, 2008 at 8:51 am
The purpose of TSQL is to encourage SET-BASED processing and not a row-by-row processing. Can't you do what you need to do on all affected records at once ?
If you...
July 9, 2008 at 7:59 pm
I am not sure you want to return all the data in one go. Usually people add nodes as the are "expanded" and the child(S) are empty. The reason is...
July 9, 2008 at 4:38 pm
Heh... There is a saying ... you can learn something new every day. I wasn't aware that "insert exec restriction" was removed in 2005.
July 9, 2008 at 4:22 pm
INSERT INTO ... EXEC does *not* works with table variables, try with TEMPORARY Tables (#) instead.
July 9, 2008 at 2:41 pm
your server could also be under too much parallel activity.
July 9, 2008 at 12:20 pm
Some functions return sql_variant datatype like SESSIONPROPERTY and you many not want to perform conversions on the output so you use sql_variant to store the results.
July 9, 2008 at 12:07 pm
You should run UPDATE STATISTICS tblname WITH FULLSCAN on all your tables and try to rebuild all indexes.
July 9, 2008 at 11:47 am
Matthew Cushing (7/7/2008)
July 7, 2008 at 1:58 pm
DBASkippack (7/7/2008)
Database cannot be started in this edition of SQL Server 2005 because it contains a partition...
July 7, 2008 at 1:46 pm
Maybe something like this :
DECLARE @T TABLE ( dt datetime, In_Averagebps decimal (9,2),Out_Averagebps decimal (9,2) )
INSERT INTO @T (dt,In_Averagebps,Out_Averagebps ) VALUES ('6/16/08 6:01 AM',135151.9,141747.9)
INSERT INTO @T (dt,In_Averagebps,Out_Averagebps )...
July 7, 2008 at 1:39 pm
Viewing 15 posts - 1,021 through 1,035 (of 5,103 total)