Viewing 15 posts - 301 through 315 (of 348 total)
Hello Tony,
In order for you to recover a database to a point in time, you need the following backup files:
1. Weekly full backup file
2. Last Differential backup file
3. Transaction log...
January 25, 2006 at 12:56 pm
Hello Jim,
You can write it as follows:
Select @PartDescription = Description, @UnitOfIssue = UnitOfIssue FROM dbo.PartMaster WHERE PartNumber = @ComponentPartNumber
Thanks and have a nice day!!!
January 25, 2006 at 8:01 am
Hello Bill,
Check out "SET NOCOUNT" in BOL.
Thanks and have a nice day!!!
January 24, 2006 at 1:13 pm
Hi Chris,
Do I need to take the differentials for the system databases too (if so, since we can’t take a diff on Master, do I...
January 24, 2006 at 10:54 am
Hello Dandrade,
Look into BOL (Books Online) for
logins-SQL Server, sp_change_users_login
and also sp_helplogins
Thanks and have a nice day!!!
January 20, 2006 at 1:32 pm
Hello Sunder,
You can also try this query in Query Analyzer
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
also go through this webpage from Microsoft
http://support.microsoft.com/default.aspx?scid=kb;en-us;q321185
Hope this is helpful to you.
Thanks and have a nice...
January 20, 2006 at 7:19 am
Hello Seemita,
You can find out the details by using @@version in Query Analyzer as
Select @@version
which will give you information as
Microsoft SQL Server 7.00 - 7.00.1063 (Intel X86)
bla bla bla
Now based...
January 20, 2006 at 7:14 am
Hello Papillon
go thru this link
http://www.sqlservercentral.com/forums/messages.aspx?forumid=23&messageid=166060
January 19, 2006 at 12:46 pm
Hello Minh,
From BOL:
REPLACE
Specifies that SQL Server should create the specified database and its related files even if another database already exists with the same name. In such a case,...
January 11, 2006 at 12:26 pm
Hello Arun Kumar,
Have you gone through the BOL (SQL Books Online) topic "TextCopy - Handling text and image data". if you click on samples, there are examples provided.
Hope this might...
January 6, 2006 at 12:12 pm
Hi G MOney,
Replace the above code with the following:
Declare @idoc int
Declare @xmldoc varchar (2000) --- you haven't specified the size
set @xmldoc = '
<?xml version="1.0" encoding="utf-8"?>
<ArgentinaInputFile> --- you have placed an...
January 6, 2006 at 11:33 am
Hello Santhosh,
Every log file in a maintenance plan will be suffixed by a timestamp data. So you can go ahead and create the required maintenance plan. Even you can check...
December 30, 2005 at 7:38 am
Hello Peter,
Thanks for the clarification but my dept head writes
If you can force the Autogrow to happen at a 15% free space threshold I’m okay with that .. we had...
November 8, 2005 at 11:43 am
It is not showing the growth physically in the properties when checked in EM. The management wants to have a 30 gig increase. So how can I work out.
Thanks
November 8, 2005 at 10:13 am
Hello Enthusiast,
Thanks for the reply. Can you be more specific with the command to be executed?
alter database
name = 'logical name',
filename = 'path of physical filename',
size = ????
maxsize = ????
filegrowth =...
November 8, 2005 at 10:07 am
Viewing 15 posts - 301 through 315 (of 348 total)