Viewing 15 posts - 2,521 through 2,535 (of 3,616 total)
It depends on the design of your table. Is there something that will identify the updated records?
If so I would be tempted to have some form of loop to...
December 29, 2005 at 9:27 am
If you run SELECT System_User it brings back the login name that you are currently logged in as.
You can create a table that maps System_User to region and then do...
December 29, 2005 at 5:47 am
I would remove it from MODEL.
I have removed it from MSDB in my environment with no ill effects but I am not doing any complicated development with DTS or SQLServerAgent...
December 29, 2005 at 4:48 am
You cannot remove guest from either master or tempdb.
If you remove it from MODEL then it won't appear in any future databases that you add to the system. MODEL...
December 29, 2005 at 3:44 am
I start with the assumption that I need a TEMPDB three times the size of my largest table.
If I have to do a large sort or reindex TEMPDB grows...
December 29, 2005 at 3:08 am
If you don't specify otherwise a primary key will be clustered. If the columns that you are proposing to become primary keys are not naturally ordered then having them...
December 29, 2005 at 2:25 am
Read http://www.sqlservercentral.com/columnists/dpeterson/lookuptablemadness.asp
If you use foreign keys then I can see the potential for performance issues when it comes to deleting records.
If you look at the execution plan of a...
December 29, 2005 at 2:11 am
I've reached the age when I time things with a calendar.
There is a great story about one of the old British colonies where the accuracy of the town clock was...
December 29, 2005 at 1:59 am
I can't see a better way around the need to have a field per table.
If your database design allows there to be a "common properties" table then your UpdatedDate field...
December 28, 2005 at 8:50 am
My SQL Script File is as follows
use master
go
------------------------------------------------------------------------------------
-- If the backup device already exists then drop it and recreate it
------------------------------------------------------------------------------------
IF EXISTS(SELECT 1 FROM sysdevices WHERE name='epos_Backup')
exec sp_dropdevice 'epos_Backup'
GO
exec sp_addumpdevice 'disk','epos_Backup','D:\Epos\BACKUP\DW_EPOS.BAK'
GO
--...
December 28, 2005 at 6:49 am
The roles that can DROP a table are DBO, DDL_Admin, obviously the SA login and other members of the SysAdmin role.
Provided your user is not a member of such roles...
December 28, 2005 at 5:12 am
I think you also need to consider the @@DATEFIRST setting which determines which day of the week is considered DAY 1.
For example US English Sunday is Day 7. For...
December 22, 2005 at 4:04 pm
Innovasys DocumentX and Apex SQL Doc both do it.
If you are only interested in SQL the Apex SQL Doc is the most detailed.
If you want something that also does Access,...
December 22, 2005 at 3:58 pm
Just as a matter of interest SQLBill do you use the straight SQL Backup or do you use a tool such as SQL Litespeed?
December 22, 2005 at 3:44 pm
Why not
SELECT CAST(CAST(GETDATE() AS INT) AS DATETIME)
December 22, 2005 at 3:28 am
Viewing 15 posts - 2,521 through 2,535 (of 3,616 total)