Viewing 15 posts - 5,146 through 5,160 (of 13,465 total)
Daxesh Patel (7/19/2012)[hr
Hi Lowell,
I have a question, did you restore existing database (replaced existing from backup) in your test or created new database from backup?
Just curious
Thanks in advance
i tested it...
July 19, 2012 at 9:31 am
what you are asking is already built into the mail service on SQL.
the service broker for mail automatically retries when the mail server is unavailable;
you might want to change the...
July 19, 2012 at 9:27 am
four i would say, built in functions, plus three kinds of user defined functions: scalar, multi statement table functions and inline table functions.
-edit]
from my notes of SQL server...
July 19, 2012 at 9:19 am
Ness thank you; I didn't know a restore cleared the whole cache on the whole instance; i had to see it to believe it, adn Now i see your point...
July 19, 2012 at 9:09 am
Ness (7/19/2012)
I am wondering about others views about restoring a copy of a production db to the same server, obviously using another name.
I always under the belief...
July 19, 2012 at 8:35 am
since you said "from an internal SQL Server.
" to "MySQL", that doesn't use 1433 at all.
if you wanted to connect to the MySQL database from your PC(which is also on...
July 19, 2012 at 8:02 am
i think you can use one of the built in convert formats.
--2012-07-19 09:56:46.040 MyString
SELECT CONVERT(VARCHAR,GETDATE(),121) + ' MyString'
July 19, 2012 at 7:57 am
repair softwork doesn't seem to work when it comes to SQL Server, because the file is always open;
it's kind of like opening a word file;
you may edit for hours, but...
July 19, 2012 at 6:28 am
when you say you are granting sa access to a group, how did you do that?
for me, "sa" access means you made the group part of sysadmin, like this?
(this is...
July 19, 2012 at 6:25 am
the full error message , and not just the error number, would give us more information.
the message gets substituted with helpful, specific info.
select * from sys.messages where message_id=18456
Login failed for...
July 19, 2012 at 5:57 am
whoops that was wrong;
i left it in place but striken.
i got the same error you mentioned when i tried this:
Msg 2108, Level 15, State 1, Procedure TR_NewTrigger, Line 4
Cannot create...
July 19, 2012 at 5:38 am
CELKO (7/18/2012)
You are doing the wrongs things, the wrong way and have not given us enough information to help you. Want to try again?
two syntactically correct , workable examples...
July 18, 2012 at 2:11 pm
all code, whether a TSQL statment or a procedure, is executed on the SQL server, and the results(if any) are returned to the client.
so if you have a linked server...
July 18, 2012 at 12:43 pm
from a SQL server perspective, cursor declarations are session specific(unless you are using the DECLARE cursor_name myCursor GLOBAL syntax);
so it's very likely that an error is occuring sometimes and...
July 18, 2012 at 12:11 pm
Done!
I made this because i really do feel we are begging for the same thing all the time!
ColdCoffee (7/18/2012)
July 18, 2012 at 11:42 am
Viewing 15 posts - 5,146 through 5,160 (of 13,465 total)