Viewing 15 posts - 451 through 465 (of 692 total)
Right click on the database name, select view, select taskpad. You will now see the space allocated and space used for the database and log files. If you then click...
August 5, 2004 at 8:33 am
Will the data always be in the formats that you showed us?
ie, there won't be a value of 'AB2' or '3A4', but always a number followed by an alpha, or...
August 4, 2004 at 3:47 pm
The extension is not nearly as important as the format. What format is the file? What application created it? Is it a text file? comma delimited, tab delimited?
Steve
August 4, 2004 at 3:41 pm
Try this...
declare @user sysname
set @user = 'dbo'
select so.[name], so.xtype, su.[name]
from sysobjects so
join sysusers su
on so.uid = su.uid
where su.[name] = @user
-- Steve
August 4, 2004 at 1:18 pm
Are T and H mapped drives or are they allocated at the system level?
August 4, 2004 at 1:05 pm
/*
First, a couple of suggestions….
You should probably plan to make backups more frequently than once...
August 4, 2004 at 12:58 pm
Not sure if this applies to your situation, but I've had the registered servers "disappear" from EM before as well. This probably does apply to Mike's situation.
In Em, on the...
August 3, 2004 at 11:06 am
I thought this seemed interesting and that functions to convert between julian and gregorian might be useful.
So, here goes -
-- Steve
/*
Usage examples -
DECLARE
@Date datetime,
@Julian int
SET @Date = '2004-08-03'
SELECT @julian-2...
August 3, 2004 at 10:13 am
same server?
If so, just qualify the table names with the database and owner....
Pubs.dbo.authors
Northwind.dbo.Customers
Steve
August 2, 2004 at 2:50 pm
Take a look at the "SP Wildcard" thread in this topic
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=129509
Steve
August 2, 2004 at 2:47 pm
If I understand your question....
where column is not null
and column <> ' '
Steve
August 2, 2004 at 2:42 pm
I was puzzled about what was wrong with Phil's query, so I tried it against the employee table in the pubs database. It seems to work perfectly!
declare
@var1 varchar(30),
@var2 char(1)
set @var1...
August 2, 2004 at 12:09 pm
Yes. Your Select statement is ok. Just remember to qualify the tablename (otherwise SQL thinks the table should be in the current database).
SELECT *
FROM DB_2..syscolumns
WHERE name = '<column_name>'...
July 30, 2004 at 3:44 pm
What error did you receive when you attempted to run the restore with move? The syntax looks ok.
Steve
July 30, 2004 at 3:33 pm
From Books Online (Backup/Restore Architecture)
The backup processing...
July 30, 2004 at 11:08 am
Viewing 15 posts - 451 through 465 (of 692 total)