Viewing 15 posts - 12,976 through 12,990 (of 26,486 total)
Brandie Tarvin (4/11/2012)
GilaMonster (4/11/2012)
Yes, they are. http://www.sqlservercentral.com/Forums/Topic1281318-203-1.aspxWow. Did I catch that right? The OP posted in an Article discussion because we weren't answering the questions elsewhere?
And now he is getting...
April 11, 2012 at 10:17 am
asranantha (4/11/2012)
April 11, 2012 at 10:10 am
asranantha (4/11/2012)
iam waiting for answrers.donot write any othere messages.if u know tell me properly other wise stop write any...
April 11, 2012 at 9:54 am
SQLKnowItAll (4/11/2012)
opc.three (4/11/2012)
sqlfriends (4/11/2012)
...I don't see change DNS name in the steps.You're unbelievable....
LMAO You will have to work with your network admins on this one.
Okay, who has the silver spoon...
April 11, 2012 at 9:31 am
nick.fairway (4/11/2012)
April 11, 2012 at 9:11 am
This is what I came up with:
select replace(replace(replace(convert(varchar(30), getdate(), 120),'-',''),':',''),' ','')
April 11, 2012 at 9:06 am
You need to investigate the queries being run in the other database. If they are blocking queries in the database being accessed by the web app, it sounds like...
April 11, 2012 at 8:55 am
nick.fairway (4/11/2012)
SELECT G.OrderDate, G.ProductKey, QtyOrdered = SUM(F.QtyOrdered), G.MTD
FROM
(
SELECT
...
April 11, 2012 at 8:50 am
yes, it is possible to generate a string that when displayed is a hyperlink.
April 11, 2012 at 8:44 am
jfogel-1131029 (4/11/2012)
April 11, 2012 at 8:40 am
Hope this helps:
CREATE LOGIN [domainname\username] FROM WINDOWS; -- Replace domainname\username with the windows login you created
GO
USE [first_database_name]
GO
CREATE USER username FOR [domainname\username];
GO
EXEC sp_addrolemember N'db_owner', N'username'
GO
USE [second_database_name]
GO
CREATE USER username FOR [domainname\username];
GO
EXEC sp_addrolemember...
April 11, 2012 at 8:35 am
You have a GO (batch terminator in SSMS) in the middle of the IF ELSE.
IF EXISTS(SELECT name FROM msdb.dbo.sysoperators where name = @onCall)
EXEC msdb.dbo.sp_update_operator @name=@onCall,
@enabled=1,
@weekday_pager_start_time=0,
@weekday_pager_end_time=235959,
@saturday_pager_start_time=0,
@saturday_pager_end_time=235959,...
April 11, 2012 at 8:25 am
djustice 20821 (4/11/2012)
April 11, 2012 at 8:23 am
Actually, I would be amazed if the coded posted actually did anything.
April 11, 2012 at 8:22 am
Duplicate post. Please post any answers here.
April 11, 2012 at 8:19 am
Viewing 15 posts - 12,976 through 12,990 (of 26,486 total)