Viewing 15 posts - 2,581 through 2,595 (of 3,667 total)
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
The advice to backup the database after doing a truncate_only is because truncate_only removes checkpointed transactions from the log and therefore you have lost your ability to restore to a...
December 22, 2005 at 1:45 am
Sam, I'm with you on this but I would say there is one over-riding cause of all project failures and that is a break-down in communication.
It doesn't matter if it...
December 21, 2005 at 3:18 pm
I've lost count of the number of times I've sat through a recording of a TV show, adverts and all and then had either one of two thoughts
a) Hang on...
December 21, 2005 at 3:09 pm
Guys, in the UK it has been illegal to tape records (remember those) and CDs for as long as I can remember. It is an entirely toothless law because...
December 21, 2005 at 1:45 am
Off the top of my head (I don't have SQL at home) I'm not sure if TEXT and NTEXT are allowed as output parameters but the general format is
CREATE PROC...
December 20, 2005 at 12:31 pm
Assuming that ISQL on Sybase is the equivalent of OSQL in SQL Server then the easiest way of using a batch file to create tables is to create a text...
December 20, 2005 at 12:19 pm
Or even
SELECT name FROM syscolumns WHERE id=object_id('dbo.TBL1')
December 20, 2005 at 4:40 am
I need a lot more information to give anything other than general advice.
Is your data access via stored procedures?
Are there indexes where they should be on the fields?
What is the...
December 19, 2005 at 5:47 am
Viewing 15 posts - 2,581 through 2,595 (of 3,667 total)