Viewing 15 posts - 376 through 390 (of 993 total)
Please don't cross post - someone has already answered your question here.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=146&messageid=322131
Cheers
November 10, 2006 at 11:18 pm
Use nested selects such as
select (select x from myTable where rowNum=1) as col1, (select x from myTable where rowNum=2) as col2, (select x from...
November 2, 2006 at 4:21 am
That's a fairly broad question - is this for an assignment or something?
In any case, you have two ways of authenticating with SQL Server - Windows Authentication or SQL-Server authentication. ...
November 2, 2006 at 4:13 am
Please don't cross post - or if you must then please include references between your threads so that other members don't answer your question when it's alreay been answered elsewhere. ...
November 2, 2006 at 4:10 am
Cross post - see http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=145&messageid=318895 instead (maintain a single set of replies so we don't double answer).
October 29, 2006 at 9:06 pm
I like the "schwacked" term ![]()
I haven't used much of the SQL 2005 tools yet but I would imagine that the window sizing is...
October 25, 2006 at 9:31 pm
I'd play with the settings on the linked server properies - there's two about collations. One is about using the remote server's collation and the other indicates whether you want...
October 25, 2006 at 9:29 pm
I don't see how that code helps. I tried this
create table #Command (
EventType nvarchar(100),
parmeters int,
EventInfo nvarchar(255)
)
GO
select 1
GO
INSERT INTO #Command
EXEC sp_executesql N'dbcc inputbuffer(@SPID)', N'@SPID int', @SPID = @@SPID
GO
select...
October 25, 2006 at 9:27 pm
Hi..
What does Query Analzer say about the view names?
What does select * from information_schema.views return?
What tool did you use to give you that code? Scripting from Enterprise Manager, Query Analyzer...
October 23, 2006 at 12:27 am
Having completed IT + Maths degrees at university it is nice to see someone using some maths in the real world - I reckon 99/100 SQL developers would've used a...
July 25, 2006 at 7:28 am
It is important that incorrect (again, depends on your point of view to some extent) posts are debated. It wasn't really that "ouch" from my point of view but again...
July 23, 2006 at 6:47 pm
I guess the lines might blur slightly when you have a table of drugs, some of which could be used to treat multiple conditions.
EG, we are developing an electronic forms...
July 21, 2006 at 2:17 am
Locking hints mightn't needed (although they certainly couldn't hurt) IFF there can only be one user modifying a given order at any given time. I assumed that you wanted the...
July 18, 2006 at 4:37 am
No problem - the stored proc parameter method is also much safer as it helps to avoid SQL injection attacks
July 14, 2006 at 2:32 am
I agree with the others - your question doesn't seem to be expressed very clearly.
You stated that you need a stored proc to accept a parameter and based on this...
July 14, 2006 at 2:21 am
Viewing 15 posts - 376 through 390 (of 993 total)