Viewing 15 posts - 346 through 360 (of 5,356 total)
Heyhey, you mix up something here. Wine is nothing to drink like beer or other alcoholica.
But from your given alternatives, I would also opt for #3 (of course, without...
May 11, 2005 at 3:12 am
select * from table1 where id = case @parm when null then null else @parm end
where id = null...
Have you tried that before posting?
May 11, 2005 at 2:43 am
Hm, I would rather drink another good one, than think about a schema for this just for fun.
Anyway I think most wine guides...
May 11, 2005 at 2:20 am
Germany may outsource its resources to Poland (no jokes please) but German jobs would be lost.
May 11, 2005 at 1:36 am
CREATE TABLE #test
(
dt DATETIME
)
INSERT INTO #test
SELECT '20050504'
UNION ALL
SELECT '20050510'
UNION ALL
SELECT '20050511'
UNION ALL
SELECT '20050515'
UNION ALL
SELECT '20050517'
SELECT MIN(t1.dt) [DATE], ISNULL(DATEDIFF(dd,MAX(t2.dt), MAX(t1.dt)),0) [DATE DIFF]
FROM #test t1 LEFT JOIN #test t2 ON t1.dt>t2.dt
GROUP BY...
May 10, 2005 at 6:50 am
Alternatively click on the button next to the combobox. You should see a windows popping up showing all available active servers. Once you've connected, QA "remembers" your last servers.
May 10, 2005 at 1:25 am
Welcome to the family!
Within your Microsoft SQL Server program group you'll find Books Online BOL). Unlike other MS product documentation, SQL Server's online...
May 9, 2005 at 2:57 am
See if this helps:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=180032#bm180450
May 9, 2005 at 2:05 am
In addition to Carl's comment, see if this helps:
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/incbulkload.mspx
May 9, 2005 at 1:39 am
Pipe the results from sp_helpindex into a table and query this.
The following query is not exactly what you've asked for, but I think this will get you going:
SELECT
CAST(SO.[name] AS...
May 9, 2005 at 1:34 am
One possible way would be to send the return from xp_cmdshell to a table and query the table for the filename to process:
CREATE TABLE cmdshell (line VARCHAR(260))
GO
INSERT INTO cmdshell EXEC...
May 6, 2005 at 5:21 am
Viewing 15 posts - 346 through 360 (of 5,356 total)