Viewing 15 posts - 6,691 through 6,705 (of 7,429 total)
Locally may not show network bottlenecking issues that will appear when done. It depends first on the amount of data to deliver first then how much will be moved each...
March 22, 2002 at 11:56 am
Here is what I just found in BOL
Using AWE Memory on Windows 2000
Microsoft® SQL Server™ 2000 Enterprise Edition uses the Microsoft Windows® 2000 Address Windowing Extensions (AWE) API to support...
March 22, 2002 at 11:49 am
This will do it
DECLARE @StartDate DATETIME
DECLARE @EndDate DATETIME
DECLARE @Cnt INT
DECLARE @Diff INT
DECLARE @OutCnt INT
SET @StartDate = '2/1/2002' --Starting point
SET @EndDate = '3/1/2002' --Ending Point but does not count this...
March 22, 2002 at 10:55 am
ALso you run into many issues based on the version of the Oracle server and the client you are using. I usually for speed purposes though, once I get it...
March 22, 2002 at 10:46 am
Strangest thing I have ever seen. I can reporduce it from this which ends up with 4095 rows but the file outs with 4096, when I decreased number of rows...
March 22, 2002 at 10:19 am
Check out http://support.microsoft.com/default.aspx?scid=kb;EN-US;q269587 and see if this fits.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
March 22, 2002 at 8:48 am
Did you try using this way.
ip_InsertIt N'yourunicodedatahere', GETDATE()
Should work, however how are you running the procedure, application type?
March 22, 2002 at 8:46 am
How are you reorganizing your database and how much space does the largest table take up. You could reorg each table and index if they are not too large and...
March 22, 2002 at 8:41 am
From QA try
sp_dropserver old_server_name
GO
sp_addserver new_server_name, local
GO
This will update sysservers table, see BOL.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
Edited by - antares686...
March 22, 2002 at 8:33 am
You can also use sp_helptext 'viewname' to get it as a recordset.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
March 22, 2002 at 8:28 am
Found this on dbforums.com, let me know if this helps.
If I remember correctly, your cnfgsvr.exe was failing because a connection could not be established
to the SQL Server and the failure...
March 22, 2002 at 5:31 am
quote:
do you know exactly what happens here ?
Mostly adds system objects that only exist in...
March 22, 2002 at 5:15 am
quote:
Personally, I'd let the instances compete and then see what happens. SQL does a good job of managing itself, though I'm not...
March 22, 2002 at 5:11 am
Viewing 15 posts - 6,691 through 6,705 (of 7,429 total)