Viewing 15 posts - 316 through 330 (of 1,655 total)
When you execute the procedure as sa, you use the windows credentials of the service account, which in a lot of cases is a local administrator on the server.
If...
May 26, 2009 at 8:51 am
By default the public role has Execute permission on this procedure. I just checked it on 3 servers I recently installed.
So everybody should be able to use it.
If for...
May 26, 2009 at 8:27 am
arup_kc (5/26/2009)
I have a table.Create table emp (id int IDENTITY(1,1))
How to write INSERT statement for this table?
Thanks in advance.
May I ask why you would want such a table?
May 26, 2009 at 8:03 am
Try this:
SELECT * FROM [Servername\InstanceName].database.dbo.table
May 26, 2009 at 8:01 am
nitin.doshi (5/26/2009)
May 26, 2009 at 7:36 am
Since you started that second thread already two hours before installing SP2, it's probably a good idea to start the whole process from scratch again.
May 26, 2009 at 4:54 am
San (5/26/2009)
Copyright (c) 1988-2005 Microsoft Corporation Standard Edition on Windows NT 5.1
(Build...
May 26, 2009 at 3:50 am
RTM is the first version which gets released without any patches. Could you post the results from this, just to be sure that SP2 is installed correctly:
SELECT @@VERSION
May 26, 2009 at 3:27 am
You say you configured this on your test server. Does that mean that the principal and the mirror databases are both on the same server? If that's the case you...
May 26, 2009 at 2:05 am
Sounds like the account under which you execute the backup, doesn't have enough permissions on the network share.
If you run the job under a local account, you have to give...
May 26, 2009 at 1:17 am
As for why SQL still don't start look in the Windows eventlog for the exact error message. You might just have made a typing error.
Why mirroring wasn't working I don't...
May 25, 2009 at 7:01 am
PS. Of course, if you have removed the parameters for the master files and the logfiles you must add them again.
(dC:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\master.mdf;
-eC:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG;
-lC:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\mastlog.ldf
)
May 25, 2009 at 6:34 am
This trace flag was only needed when SQL 2005 came out as RTM version which didn't support mirroring.
Once you install SP1 (or higher) you don't need this any more, so...
May 25, 2009 at 6:31 am
Did you try detaching the database and re-attach it using the correct filenames?
May 25, 2009 at 5:13 am
This article explains how the SQL 2000 passwords are hashed and more:
http://www.ngssoftware.com/papers/cracking-sql-passwords.pdf
May 25, 2009 at 3:43 am
Viewing 15 posts - 316 through 330 (of 1,655 total)