Viewing 15 posts - 151 through 165 (of 398 total)
in SQL2K, the full backup does not clean transaction log. So the time between full backup and transaction backup is irrelevant.
Only transaction log backup clean out transaction log.
Add more transaction...
June 2, 2004 at 6:51 am
I doubt you can do that.
You probably need to fix it in source.
June 2, 2004 at 6:31 am
Save the following to multiplesql.wsf.
Get syntax by multiplesql.wsf /?
<package>
<job id="multiplesql">
<runtime>
<named
name="SQLFolder"
helpstring="sql files folder"
type="string"
required="true"
/>
<named
name="S"
helpstring="server"
type="string"
required="true"
/>
<named
name="U"
helpstring="login id"
type="string"
required="true"
...
June 2, 2004 at 6:16 am
I had project with similar request about two years ago. The solution was to use WshShell.Exec method to run sql job, check Status, CDO mail if excess a limitation.
May 20, 2004 at 6:17 am
check if the group has Deny access setting in Authentication.
EM/Security/Logins, in the details panel, right-click the group and click properties.
May 17, 2004 at 5:52 am
sysobjects table has parent_obj column should help you.
May 17, 2004 at 5:29 am
Batch job contains multiple osql command lines from the same input inputfile (sql statement or stored procedure) should do the job.
May 17, 2004 at 2:28 am
Test code:
create table (id int, col1 char(1), col2 char(2))
insert select 1, 'A', 'kk'
insert select 1, 'B', 'jj'
insert select 1, 'C', 'bb'
insert select 2, 'D', 'qq'
insert...
May 14, 2004 at 6:08 am
select * from
(Select ColumnA, Count(ColumnB) as ColB From MyTable Where ColumnA='Something' Group by ColumnA Sort By ColumnA) a
May 14, 2004 at 2:04 am
My mistake, it is scalar function.
May 14, 2004 at 1:54 am
In the old day, one can DBCC MEMUSAGE. You have to find the replacement.
May 13, 2004 at 3:24 am
One of ways to do it:
create scale function (fn_list(budgetid)) list parent, chidren in csv format by passing budgetid.
select budgetid, budgetdesc, fn_list(budgetid) as budgeholdernames from
table.
May 13, 2004 at 3:06 am
DECLARE @xx AS nvarChar(128)
SET @xx = (SELECT DB_NAME()) --Pick up current dbname
exec ('ALTER DATABASE '+@xx + 'SET RECURSIVE_TRIGGERS ON')
GO
May 13, 2004 at 2:58 am
store the max value into a table (only one row).
May 12, 2004 at 7:40 am
Viewing 15 posts - 151 through 165 (of 398 total)