Viewing 15 posts - 421 through 435 (of 616 total)
I assume you also checked that sql server is configured to allow remote connections?
Are you trying to connect to a named instance or is it just a default instance?
Are you...
December 12, 2012 at 7:28 am
Is TCP/IP enabled? Check this in sql server configuration manager.
December 12, 2012 at 7:01 am
1) What authentication mode are you using?
2) Are you trying to connect to the server remotely?
3) Have you enabled remote access?
4) Is TCP/IP enabled?
You need to provide more info.
December 12, 2012 at 6:18 am
So you want to have a report to allow you to select a SQL instance name from a drop-down box then display all index stats on all databases on the...
December 12, 2012 at 5:28 am
Possibly a bad attempt at solving this on my tablet. There has to be a cleverer way to do it lol give it a go anyway
If datepart(mm, your-date) >7
then...
December 11, 2012 at 4:13 pm
eusanpe1 (12/11/2012)
I am trying to write a query to pull out the next order but it isn't working if the next order is equal to the order that I...
December 11, 2012 at 10:36 am
Possibly..... I would add DatabaseMail.exe to the Prevent mass mailing worms from sending mail rule
December 11, 2012 at 3:18 am
I provided you with a working solution earlier. Have you tied it?
December 6, 2012 at 4:51 am
k.thanigaivel (12/6/2012)
try this...with cte1(date1)
as
(
select convert(date,'2012-11-05')
union all
select DATEADD(week,1,date1) from cte1
where date1<='2012-11-20'
)
select * from cte1
What happens if the start date parameter is not a monday?
December 6, 2012 at 4:32 am
I'm assuming that the start of the week is Monday. Also this solution uses a tally table.
First create a tally table (numbers table)
If exists (select 1 from information_schema.tables where...
December 6, 2012 at 4:14 am
Sachin 80451 (12/6/2012)
Unfortunately i dont have the faintest idea.Is there any way you can break it down for me?
Okay let me thave a go.
Cadavre introduces the concept of a tally...
December 6, 2012 at 4:02 am
Have you seen this? http://www.nevron.com/Nevron.Home.aspx
December 5, 2012 at 5:01 am
Lowell (12/3/2012)
one more thing to consider:
if you create a new database via a RESTORE, that does not trigger the CREATE_DATABASE event. that triggers the event AUDIT_BACKUP_RESTORE_EVENT,...
December 3, 2012 at 10:33 am
Thanks for the confirmation.
I have managed to resolve the problem with the following trigger which I have tested and seems to work like a charm!
CREATE TRIGGER [DDLTriggerCreateAlterOrDropDatabaseBackupSchedule]
ON ALL SERVER...
December 3, 2012 at 9:37 am
Viewing 15 posts - 421 through 435 (of 616 total)