Viewing 15 posts - 1,906 through 1,920 (of 2,463 total)
hennie7863 (4/9/2010)
Don't know. Why do you ask?
because these are automatically generated by Sql server and you cant drop them (as far as i know )
April 9, 2010 at 4:56 am
i think you can do one thing
1. Add a column in source table "archive_flag"
2. set archive_flag = 1 for six month data
3 inset data into dest. table where...
April 9, 2010 at 3:24 am
hennie7863 (4/9/2010)
deleting these statistics could be a quick win.
Are these Statisctics are manually created ??
April 9, 2010 at 2:25 am
I havent got much help from these deatils but it looks like the agent user doen't have access to the linked server.
Also refer this http://support.microsoft.com/default.aspx?scid=kb;en-us;906954
April 8, 2010 at 11:47 pm
YCH (4/1/2010)
"Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server..."
post the complete error and query you are using in job.
April 8, 2010 at 5:54 am
r.rozeboom (4/8/2010)
Well it seems i found the trace at last were i found the evidence.
its better to keep A DDL trigger just for future prospect.
April 8, 2010 at 5:48 am
You can also choose C2 Audit Trace , it is good option but the main limitation of the auditing is that it reduces the performance of the SQL Server. This...
April 8, 2010 at 5:45 am
If your Database is handling good amount of transactions , growth of log is expected.
April 8, 2010 at 5:01 am
- Win. (4/8/2010)
But i have to use in script, thats the criteria..
INSERT INTO LINKEDSERVER.Databasename.dbo.Tablename
Select * from DatabaseName.dbo.Tablename
April 8, 2010 at 3:14 am
Try this
DECLARE @availableSpace AS FLOAT
DECLARE @alertMessage AS Varchar(4000)
CREATE TABLE #tbldiskSpace
(
driveName VARCHAR(3),
freeSpace FLOAT
)
INSERT INTO #tbldiskSpace EXEC master..XP_FixedDrives
SELECT @availableSpace = ROUND((freeSpace)/1024,1) FROM #tbldiskSpace WHERE driveName = 'D'
SET @alertMessage = 'Free Space...
April 7, 2010 at 8:56 am
Paul White NZ (4/7/2010)
DECLARE @test-2
TABLE (
ID ...
April 7, 2010 at 6:58 am
hmm thats quite interesting, or i would say some poor SQL logic ;-).
Post the Stored Proc's script
April 7, 2010 at 6:22 am
- Win. (4/7/2010)
Anyone let me know how to correct and help me to do so.
Have you tested it ? i dont think you did.
Script is looking OK but better...
April 7, 2010 at 5:58 am
Viewing 15 posts - 1,906 through 1,920 (of 2,463 total)