Viewing 15 posts - 14,251 through 14,265 (of 39,919 total)
satishm123,
We are happy to help, but your post doesn't indicate any research, nor does it ask pointed questions. If you don't understand something you researched, then post a specific question...
February 29, 2012 at 10:52 am
For the install, double click setup.
February 29, 2012 at 10:47 am
There should be a group for the service account. Go into the Computer Management, Users and Groups, and Groups. The group for the SQL Server database engine service should be...
February 29, 2012 at 10:45 am
Are all three procs owned by the same person? If so, you get an ownership chain there.
Try this, Joe is a normal user, not roles/rights assigned.
-- As DB_Owner
CREATE PROCEDURE dbo.spRefresh
AS
BEGIN
...
February 29, 2012 at 8:40 am
It's legal, but I agree with Recurs1on that it's confusing and not clear.
I don't use DELETE FROM (or INSERT INTO), but rather the
DELETE t
from xxxx t
...
February 29, 2012 at 8:33 am
John is correct here, the logging is the same.
Actually, the logs written are always the same, regardless of recovery model. What differs is how long the log records are retained,...
February 29, 2012 at 8:30 am
It completely depends on your path. I would guess 2012, but you'd have to test it.
February 29, 2012 at 8:26 am
Might watch out for this: http://blog.trivadis.com/b/nicolasmueggler/archive/2008/01/17/installing-sql-server-2005-after-visual-studio-2008.aspx
VS2008 has some SQL components in there to work with SQL Server instances, and those are rev'd after the SQL Server 2005 components.
February 28, 2012 at 2:21 pm
If you right click SSMS in the menu and select properties, you will see the shortcut it refers to.
It is still "ssms.exe"
February 28, 2012 at 2:18 pm
Is this native SQL Server backup, or a third party backup?
Is it local, or to a remote drive or share?
February 28, 2012 at 2:15 pm
February 28, 2012 at 2:14 pm
You should be able to see the linked servers listed in Management Studio for all instances. As for searching across them all, you have to connect to each and then...
February 28, 2012 at 2:13 pm
It's a little hard to understand what is wrong since you haven't formatted things well. Do you mean that if you run this:
raiserror 22004 'This is a test'
You get...
February 28, 2012 at 2:10 pm
An update statement doesn't have a select. It should be like:
update a
set a.column = a.column + 1
from Table1 a
inner join table2 b
...
February 28, 2012 at 2:05 pm
Viewing 15 posts - 14,251 through 14,265 (of 39,919 total)