Viewing 15 posts - 2,041 through 2,055 (of 5,394 total)
Not enough information.
Please post table DDL scripts, some sample data and expected results based on sample data.
See the first article in my signature line to discover how to post to...
January 25, 2012 at 2:43 am
Post some code, otherwise I highly doubt you will get any help.
See the first article linked in my signature line if in doubt.
January 25, 2012 at 2:40 am
No, it would block SQLServer users and wouldn't drop existing connections.
January 25, 2012 at 2:28 am
I think a logon trigger would do the trick:
CREATE TRIGGER TR_UserShutdown ON ALL SERVER
FOR LOGON
AS
BEGIN
IF DATEPART(hour,GETDATE()) BETWEEN 4 AND 5
AND SUSER_NAME() NOT IN ('sa', 'SomeOtherAuthorizedUser')
BEGIN
RAISERROR('No user logon between 4...
January 24, 2012 at 11:11 am
Interesting, I didn't know that a negative %errorlevel% was possible.
January 24, 2012 at 10:43 am
GRussell31 (1/23/2012)
I've read that TempDB should not be placed on the same location as the Log Files so was planning on placing it on the same location as the Database...
January 23, 2012 at 3:22 am
satish_kukunuru (1/23/2012)
Can you clarify me what is in process & our process mean ? I am new to this area using remote calls.
Run this:
EXEC master.sys.sp_MSset_oledb_prop
What does this return for SQLNCLI10,...
January 23, 2012 at 3:19 am
Did you reboot the server(s) after tweaking MSDTC configuration? This step is required.
How is the provider loaded? In process or out of process?
January 23, 2012 at 2:11 am
Might be a totally different thing, but this article[/url] shows you how to set up and troubleshoot linked servers and OLEDB providers.
Hope this helps
Gianluca
January 23, 2012 at 1:47 am
shasan (1/22/2012)
Dear Can u please copy the stored procedure with which you are inserting the records into the table are you passing the identity value wile inserting?
This thread...
January 23, 2012 at 1:42 am
Great article Wayne!
Thanks for sharing.
January 22, 2012 at 4:58 pm
See if this helps:
http://www.sqlservercentral.com/Forums/Topic1188295-392-1.aspx
January 22, 2012 at 2:53 pm
Ola Hallengren has a great script for that:
http://ola.hallengren.com/sql-server-backup.html
No need to re-invent the wheel.
January 22, 2012 at 2:48 pm
GRussell31 (1/20/2012)
January 22, 2012 at 2:43 pm
IG (1/20/2012)
SELECT a.EmployeeID,a.Salary a.RActive
b.ManagerName
FROM Employees a (nolock)
,Managers b...
January 20, 2012 at 12:48 am
Viewing 15 posts - 2,041 through 2,055 (of 5,394 total)