Viewing 15 posts - 391 through 405 (of 2,387 total)
select a.controllerID
from SendController a
inner join (select distinct regionID, count(regionID) as RegionNo FROM SendController GROUP BY regionID) b
on a.regionID = b.regionID
...
July 9, 2004 at 10:08 am
You have to submit backup statements from mulitiple sessions.
July 9, 2004 at 9:55 am
Can you post stored procedure "sp_SarBoxAudit"?
July 9, 2004 at 9:48 am
It depends on how much data your business can afford to loss. We backup it every 15 minutes for business critical database.
July 9, 2004 at 9:43 am
Try to reinstall the 64-bit version of MDAC 2.8 which comes with the 64-bit version of Windows Server 2003.
I will install 64-bit SQL Server soon and see whether...
July 9, 2004 at 9:42 am
Do you restart SQL Server after running sp_resetstatus? Try that.
July 8, 2004 at 1:47 pm
select sysobjects.name, syscolumns.name as name1 into DP_AUDIT
from sysobjects, syscolumns
where sysobjects.id = syscolumns.id
and sysobjects.xtype='U'
July 8, 2004 at 12:22 pm
Try SELECT * FROM mylinkedserver.yourcatalogname..mytable, your catalog name can be found from EM by click tables under the linked server.
Have you try to use Microsoft Jet OLE DB Provider to...
July 8, 2004 at 12:15 pm
Open your maintenace plan, goto reporting tab, check "write report to text file in directory', run your job and come back the director to find out report which may have...
July 8, 2004 at 11:51 am
1.Create a new database with the same name or a different name. You will have to use a different physical file name, which is fine.
2.Stop SQL Server.
3.Rename the...
July 8, 2004 at 11:41 am
Do you have to change the IP? Run the setup to uncluste SQL Server and re-cluster it. See KB Q244980 for details.
July 8, 2004 at 10:15 am
The 9004 error message indicates that the log dump is corrupt.
Drop the suspectd database and restart the restoration.
July 8, 2004 at 10:11 am
Schedule it to run automatically when SQL Serevr Agent starts.
July 8, 2004 at 10:07 am
Viewing 15 posts - 391 through 405 (of 2,387 total)