Viewing 15 posts - 61 through 75 (of 426 total)
Search is your friend...
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=112330
Andy
July 30, 2006 at 1:47 am
You can use EM to create a new Server registration using the machine name instead of local.
Drawback is that (local) connects EM to SQL Server via the memory network protocol...
July 30, 2006 at 1:11 am
You can use DTSRun.exe to execute on the MSDE server, and use the Windows Scheduler to schedule the jobs. MSDE does not support SQL Server Agent Jobs.
Andy
July 27, 2006 at 2:15 am
Database servers really "want" dedicated hardware, they are designed to use what you make available to them, so if you want to choke your database server to 80MB of memory,...
July 27, 2006 at 2:06 am
SQL Server can be installed on a Virtual server, however resist throwing a fit if need be, unless they are talking about "big iron" for the server.
Virtualization effectively divides the...
July 27, 2006 at 1:58 am
Your problem is the numeric(5,2), changing it to numeric(6,2) fixes the issue:
DECLARE @backed_up_page_count numeric(10,0)
, @backed_up_page_count1 numeric(10,0)
SELECT @backed_up_page_count = ((50 * 1073741824.0) / 8192) -- 50GB
, @backed_up_page_count1 = ((1...
July 27, 2006 at 1:40 am
Since you state that you are using Standard Edition, how much memory is available to the query?
From BOL: Is there enough memory available to execute the query in parallel?
If memory...
July 20, 2006 at 1:11 am
Try:
EXEC sp_msForEachTable 'EXEC sp_recompile ''?'''
Andy
July 20, 2006 at 12:54 am
Actually Personal is SQL Server 2000 Standard with MSDE limitations and only requires a SQL Server 2000 CAL license.
Andy
July 20, 2006 at 12:40 am
Great article!
Why not change your PRINT statement to:
PRINT 'Select 1 - '+CONVERT(varchar(23),GETDATE(),121)
This will output:
Select 1 - 2006-07-19 21:24:09.230
Which should give you better timing diagnostics.
Andy
July 19, 2006 at 10:28 pm
--SELECT * FROM CxCHon
DELETE FROM CxCHon
WHERE EXISTS (SELECT * FROM Historic WHERE Terc = CxCHon.Terc AND Val = CxCHon.Val)
Andy
July 18, 2006 at 11:27 pm
I had to delete the DTS scheduled Jobs and reschedule the DTS Jobs to correct.
I documented the settings and rescheduled using EM as I only had 4 jobs to fix.
I was...
July 11, 2006 at 1:53 am
The account with "dbo" wins the db_Owner battle, generally.
When the other db_Owner or sysadmin creates the object, then it can be owned by <Other User>.<database object> instead of dbo.<database...
July 11, 2006 at 1:49 am
Use Data Sources (ODBC) Administrative Tools, Connection Pooling tab, and double click the driver in the list to turn on / off.
More info:
http://www.sql-server-performance.com/sk_connection_pooling_myths.asp
July 11, 2006 at 1:23 am
Viewing 15 posts - 61 through 75 (of 426 total)