Viewing 15 posts - 106 through 120 (of 190 total)
select u.name
from sysprotects p
inner join sysobjects o
on o.id = p.id
inner join sysusers u
on p.uid = u.uid
where p.action = 196
and o.name = 'table_name'
October 2, 2008 at 2:23 pm
Lynn Pettis (9/30/2008)
Incremental Backup - Everything since the last Incremental Backup is backed up. (This could be analogous to SQL Server Transaction Log backups.)Does this help?
No help.
Incremental Backup -...
October 1, 2008 at 12:03 pm
Google tells you what you want:
Types of Backup in Windows:
http://technet.microsoft.com/en-us/library/cc784306.aspx
Here is SQL2K BOL: --- (4 types of backup)
http://technet.microsoft.com/en-us/library/aa174477(SQL.80).aspx
I skipped SQL2K5 (you can find it by yourself). Please tell me which...
September 30, 2008 at 12:27 pm
ananda.murugesan (9/29/2008)
what is different between incremental backup & differential backup in sql server 2000?
SQL SERVER does not have incremental backup.
But, the Windows OS does have.;)
September 29, 2008 at 11:52 am
martellianz (9/25/2008)
yap,"smartbiz" is a database name and the server name is "kawi".....
As Sakthi mentioned, you should use server name, not the database name, as the data source.
September 25, 2008 at 1:24 pm
Actually, I didn't know the "UNIT" of R/W in profiler. But, when I thought about STATISTICS_IO, I picked up the correct answer.;)
September 25, 2008 at 11:32 am
You can update the uid of systypes table.
BUT, THIS IS A BAD PRACTICE!!
September 23, 2008 at 12:29 pm
Usually, DEV/QA has much less data than PROD does. So, your sproc runs faster in DEV/QA.
I saw you used a cursor in the sproc. Could you get rid of it?...
August 21, 2008 at 12:28 pm
When you set up Maintenance plan, there is an option -- "Remove files older than ...". You can use it to remove the Friday's backup file.;)
August 20, 2008 at 11:34 am
allenrlewis (7/31/2008)
Ok.I have the data re-strucutred to use 1 massive db....
Performance?????
So, now, 50 Companys' in one DB? and each one has a table in that 'massive db', right??
If so, you...
August 1, 2008 at 12:17 pm
In 2000, you need to have a trace, then, get this info.:unsure:
August 1, 2008 at 11:54 am
Too long....I did not go through all, but, here is an error:
set nocount on
go
remove that "go"....
----------------
Edit:
Going through the code this time, what the use of ##Temp12122121? I think you could...
August 1, 2008 at 11:39 am
I have a similar one: when I right click sproc --> Script Stored Procedure as --> ALTER TO -->... it always gives me CREATE TO....:angry: not sure what's wrong.
July 30, 2008 at 2:44 pm
Steve Jones - Editor (7/24/2008)
select @cmd = 'update tableA set '
-- cursor start here
select @cmd = @cmd + @column_name + '= ''value'' where '...
July 25, 2008 at 12:52 pm
michael_pereira (7/23/2008)
select * from Clients where client='123'
...
July 23, 2008 at 3:24 pm
Viewing 15 posts - 106 through 120 (of 190 total)