Viewing 15 posts - 1,171 through 1,185 (of 1,247 total)
What are error messages? Is it because of account?
November 8, 2006 at 12:52 pm
You can run
DBCC LOG (DBName)
November 8, 2006 at 12:50 pm
You cannot recover sa password. But you can access the server using other account with sa privilege, then, reset the password.
November 8, 2006 at 12:34 pm
Yes. If you would like to set this audit all the time, following the steps below.
• | Start SQL Server Enterprise Manager. |
• | Select, and then right-click... |
November 8, 2006 at 11:26 am
My SQL version is 2000 (8.00.2039). When I used grid for output, I found the weird output. When I used text for out, everything was going fine.
November 8, 2006 at 9:44 am
I do not know what is inside your stored procedure. But be careful when you set nvarchar(4000). There is a limit for a row in a table.
November 8, 2006 at 9:36 am
Before running your script,
SET TRANSACTION ISOLATION LEVEL Read uncommitted
In your script, enforce rowlock.
November 7, 2006 at 2:43 pm
I have tested the following snippet. It works.
CREATE TABLE #1 (col1 INT, col2 VARCHAR(1))
CREATE TABLE #2 (col1 INT, col2 VARCHAR(1))
INSERT INTO #1 VALUES (1, 'A')
INSERT INTO #2 VALUES (2, 'B')
SELECT...
November 7, 2006 at 2:31 pm
I need to have more information to answer your last question.
November 7, 2006 at 2:04 pm
Did you try to enclose your string with []?
November 7, 2006 at 1:50 pm
If it is regular stored procedure (a readable file):
1. Open your Query Analyzer;
2. Point to your desired databse;
3. Copy the code on the code window;
4. Run it.
If it is an extended...
November 7, 2006 at 1:47 pm
I had exactly same experience as you have now.
It is most likely that you used a linked server. The SQL Server Agent had an invalid account or password. Although you...
November 7, 2006 at 1:41 pm
How about this one:
SELECT so.name TblName, sc.name ColName, si.indid
FROM (sysobjects so INNER JOIN syscolumns sc ON so.id = sc.id AND so.type = 'U')
INNER JOIN sysindexes si ON si.id...
November 7, 2006 at 1:03 pm
Viewing 15 posts - 1,171 through 1,185 (of 1,247 total)