Viewing 15 posts - 2,356 through 2,370 (of 5,394 total)
I don't see a reason why you should have SSMS 2005 installed when you already have SSMS 2008.
What are you trying to do?
November 17, 2011 at 2:37 am
The best way would be using Windows authentication.
Is it an option in your case?
November 17, 2011 at 2:36 am
You're right, sorry for suggesting a wrong solution.
I was thinking about old DTS packages.
You have no other change than running the whole maintenance plan, then.
You should see the log file...
November 16, 2011 at 2:58 pm
Have you tried with SC? It should delete the service.
November 16, 2011 at 2:51 pm
ashanair70 (11/16/2011)
Is it possible to run the History Cleanup task alone to troubleshoot?
Sure. Open the maintenance plan, right click the cleanup task and select "Execute Task".
How do I log...
November 16, 2011 at 11:28 am
Weird. If I understand correctly, you say that the service status is "started" after a reboot.
What executable does the service point to?
To get rid of the service, you can...
November 16, 2011 at 6:06 am
ashanair70 (11/16/2011)
PRODDB Executing query "BACKUP DATABASE [PRODDB] TO DISK = N'U:\\PRODDB".: 50% complete...
November 16, 2011 at 6:03 am
Let me say that your table design is a bit questionable. For instance, what's your primary key?
I assumed it was WindowsUserName.
This should put you in the right direction:
CREATE TRIGGER trgAfterInsert_employee...
November 16, 2011 at 3:18 am
The simplest and most inefficient way to accomplish this is using a triangular join:
DECLARE @sampleData TABLE (
id int identity(1,1) PRIMARY KEY CLUSTERED,
num int
);
INSERT INTO @sampleData (num) VALUES(1);
INSERT INTO @sampleData (num)...
November 16, 2011 at 3:06 am
The filter predicate
trans.Company_Link =
CASE
WHEN @Company_Link <> 0
THEN
@Company_Link
ELSE
trans.Company_Link
END
looks like a great candidate for dynamic sql.
See here for more details: http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
Moreover, you have lots of LEFT JOINs, that don't help overall performance.
Hope...
November 16, 2011 at 2:56 am
Does the OCI connect outside SQLServer? You can check that with TNSPING.
If the connection is not successful in Oracle Client, it can't succeed in SQLServer.
November 16, 2011 at 2:51 am
If you need the disk space, yes.
Be careful: shrinking the database fragments indexes badly, you should rebuild your indexes after that.
If you don't need the disk space, leave it this...
November 16, 2011 at 2:49 am
Database Mail disabled for security reasons?
And OLE automation enabled instead?
Weird, I would do the exact opposite.
November 15, 2011 at 8:05 am
Ninja's_RGR'us (11/15/2011)
Ninja's_RGR'us (11/10/2011)
Jeff Moden (11/10/2011)
I don't know if anyone else noticed but Gail isn't just the leading point holder anymore... she's also the leading poster![font="Arial Black"]Congrats Gail!!! [/font]
Actually...
November 15, 2011 at 7:45 am
rocky@123 (11/15/2011)
November 15, 2011 at 6:05 am
Viewing 15 posts - 2,356 through 2,370 (of 5,394 total)