Viewing 15 posts - 46 through 60 (of 137 total)
That was what I was afraid of...
BTW, the snapshot takes about 8-9 hours, but a Baskup/Restore takes 2-3 hours, and that's after optimizing the snapshot using -UseInprocLoader and multiple BCP...
May 2, 2003 at 11:06 am
You could use the undocumented procedure "sp_MSForEachDB"...Like this:
exec sp_MSForEachDB 'exec myProc ''?'''
It will replace the "?" with the name of each database and execute the...
April 14, 2003 at 11:36 am
Try this:
DECLARE
@Pallet_Name VARCHAR(10),
@Pallet_Num INT
SET @Pallet_Name = 'PAL'
SET @Pallet_Num = 12
SELECT
Pallet =
@Pallet_Name...
April 4, 2003 at 12:55 pm
A "SELECT INTO #temptable" will still lock the system tables in tempdb while it creates the table. A prefered method in SQL 2000 is to use a table variable (declare...
April 4, 2003 at 7:48 am
I may be misunderstanding what you need, but you can select the type of connection for the user/client based on the connection string. If you pass a uid and password,...
March 27, 2003 at 8:15 am
Here are some useful links relating to join types:
http://www.sql-server-performance.com/mb_sql_server_joins.asp
http://www.sql-server-performance.com/hints_join.asp
-Dan
March 27, 2003 at 8:04 am
If I understand what you are trying to do, give this a shot:
SELECT
l.[date],
l.contractornum
from...
March 24, 2003 at 2:56 pm
You can use these to system functions/procs to tweak the resource usage:
-- View Current settings...
SELECT FULLTEXTSERVICEPROPERTY('ResourceUsage')
-- Change current settings (1=background; 5=dedicated)
exec sp_fulltext_service 'resource_usage','3'
-Dan
March 24, 2003 at 12:18 pm
As far as the "delete" errors go...you can create a custom Agent Profile for the Distribution Agent. On the -SkipErrors property you can put 20598. This error is "The...
March 24, 2003 at 11:24 am
The simple recovery model is well-suited for DBs that are mostly read-only, or where changes are applied in bulk and can be redone programmatically if needed. Obviously not a...
March 24, 2003 at 10:30 am
I haven't looked in detail at all the postings, but from past experience I've found when doing outer joins and trying to limit the results with a WHERE clause, you...
March 24, 2003 at 10:24 am
Thanks for the insight Brian.
-Dan
March 18, 2003 at 5:12 pm
Would it then be recommended to create a SQL Server user with the same exact rights as the NT Group. Then use that SQL Server user only for connecting...
March 18, 2003 at 1:56 pm
Viewing 15 posts - 46 through 60 (of 137 total)