Zip4
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 9 articles for 0.000 sec
RE: Database Engine Tuning Advisor suggestion to replace syntax.     

Group: microsoft.public.sqlserver.tools · Group Profile · Search for Zip4 in microsoft.public.sqlserver.tools
Author: Mike
Date: Sep 4, 2008 13:59

...> Mike. Query 1 EXEC sp_executesql N'SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2', N'@P1 char(32), @P2 varchar... 'Poedunk' SET @P2 = 'Iowa' SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2
Show full article (0.84Kb) · Show article thread
Re: Database Engine Tuning Advisor suggestion to replace syntax.     

Group: microsoft.public.sqlserver.tools · Group Profile · Search for Zip4 in microsoft.public.sqlserver.tools
Author: Mike
Date: Sep 2, 2008 13:17

... EXEC sp_executesql N'SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2...> > >> SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @...
Show full article (6.04Kb) · Show article thread
Re: Database Engine Tuning Advisor suggestion to replace syntax.     

Group: microsoft.public.sqlserver.tools · Group Profile · Search for Zip4 in microsoft.public.sqlserver.tools
Author: Tibor Karaszi
Date: Sep 2, 2008 10:08

... EXEC sp_executesql N'SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2', ...'Iowa' SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2 ...
Show full article (5.37Kb) · Show article thread
Re: Database Engine Tuning Advisor suggestion to replace syntax.     

Group: microsoft.public.sqlserver.tools · Group Profile · Search for Zip4 in microsoft.public.sqlserver.tools
Author: Mike
Date: Sep 2, 2008 09:06

... >> EXEC sp_executesql N'SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2', ... 'Iowa' SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2 ...
Show full article (4.89Kb) · Show article thread
Re: Database Engine Tuning Advisor suggestion to replace syntax.     

Group: microsoft.public.sqlserver.tools · Group Profile · Search for Zip4 in microsoft.public.sqlserver.tools
Author: Tibor Karaszi
Date: Aug 29, 2008 00:53

... EXEC sp_executesql N'SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2', N...= 'Iowa' SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2 ...
Show full article (4.50Kb) · Show article thread
Database Engine Tuning Advisor suggestion to replace syntax.     

Group: microsoft.public.sqlserver.tools · Group Profile · Search for Zip4 in microsoft.public.sqlserver.tools
Author: Mike
Date: Aug 28, 2008 09:20

... missing something? Mike. Query 1 EXEC sp_executesql N'SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2', N'@P1 char(32), @P2 varchar(32...P1 = 'Poedunk' SET @P2 = 'Iowa' SELECT FirstName, LastName, Company, StreetAddress, City, State, ZIP5, ZIP4 FROM Customers WHERE City = @P1 AND State = @P2
Show full article (0.72Kb)
Re: shootout: implementing an interpreter for a simple procedural language Minim     

Group: comp.lang.functional · Group Profile · Search for Zip4 in comp.lang.functional
Author: Ingo Menger
Date: Aug 11, 2007 05:50

... would have migrated to Template Haskell. And maybe some people have migrated. But the reason why I wrote, that the syntax is not good enough, was the existence of functions like zip3, zip4, zip5 etc. in standard Haskell modules and the way how they are implemented. Not quite. See http://citeseer.ist.psu.edu/238836.html "An n-ary zipWith in Haskell". Yes, it's downloadable. Gr...
Show full article (0.62Kb) · Show article thread
Re: shootout: implementing an interpreter for a simple procedural language Minim     

Group: comp.lang.functional · Group Profile · Search for Zip4 in comp.lang.functional
Author: Frank Buss
Date: Aug 11, 2007 01:04

... people would have migrated to Template Haskell. And maybe some people have migrated. But the reason why I wrote, that the syntax is not good enough, was the existence of functions like zip3, zip4, zip5 etc. in standard Haskell modules and the way how they are implemented. But using macros for it could be difficult, because in Haskell every function has a fixed number of arguments (with ...
Show full article (1.69Kb) · Show article thread
Re: shootout: implementing an interpreter for a simple procedural language Minim     

Group: comp.lang.functional · Group Profile · Search for Zip4 in comp.lang.functional
Author: Frank Buss
Date: Aug 10, 2007 23:11

... functions in the Haskell List package like this: -- | The 'zip4' function takes four lists and returns a list of -- quadruples, analogous to 'zip'. zip4 :: [a] -> [b] -> [c] -> [d] -> [(a,b,c,d)] zip4 = zipWith4 (,,,) -- | The 'zip5' function takes five lists and returns a list... not be not as fast as the zip3, zip4 etc. versions. Lets try it in Lisp. The ...
Show full article (3.12Kb) · Show article thread