Viewing 15 posts - 3,286 through 3,300 (of 5,356 total)
Or have a third party tool like Lumigent LogExplorer.
Frank
December 4, 2003 at 4:47 am
SELECT @@version is just fine.
See http://www.sqlservercentral.com/forum/link.asp?TOPIC_ID=18417
You can compare your result with this here http://www.sqlsecurity.com/DesktopDefault.aspx?tabindex=3&tabid=4
Frank
December 4, 2003 at 4:38 am
Yes, there is only a datetime data type in SQL Server.
However, you've already figured out that you can use two controls to separate this information.
Will this information be...
December 4, 2003 at 2:23 am
DECLARE @top NVARCHAR(4) --or more if needed
DECLARE @stmt NVARCHAR(200)
SET @top = '10'
SET @stmt ='SELECT TOP '+ @top +'drug_name, Count(drug_name) From Orders Group
by drug_name Order by...
December 4, 2003 at 12:38 am
Why do you want to reinvent the wheel?
When you search this site, you'll find several threads, and I guess also scripts on your topic. However, I think, you should leave...
December 3, 2003 at 2:38 pm
Ok, got me.
Should have tried the search first ![]()
Frank
December 3, 2003 at 12:30 pm
quote:
See, I did change the title!
Yes, I see, but didn't post, because I don't want...
December 3, 2003 at 7:08 am
December 3, 2003 at 6:31 am
AFAIK, from within SQL Server you're pretty much out of luck.
Server IP you should get with
declare @ip varchar(255)
create table #temptb (grabfield varchar(255))
insert into #temptb exec...
December 3, 2003 at 5:11 am
Something like
SELECT suser_sname(), host_name()
Frank
December 3, 2003 at 5:04 am
Von Hilden nach Köln ist es ja auch keine Entfernung. ![]()
Frank
December 3, 2003 at 3:37 am
December 3, 2003 at 3:23 am
Actually we do also have an SLA with an external Asset Management Company that does most of the plain vanilla trading for us. Leaving the interesting stuff with us.
We...
December 3, 2003 at 2:44 am
Hm...not sure if this is what you want, but a look at BOL for LSN might be helpful.
Frank
December 3, 2003 at 2:35 am
Two ways for this:
1. If you have your own webspace, place it there and place this link in the picture URL.
2. In http://www.sqlservercentral.com/forum/link.asp?TOPIC_ID=14402 Andy said, you could submit it to...
December 3, 2003 at 12:59 am
Viewing 15 posts - 3,286 through 3,300 (of 5,356 total)