Viewing 15 posts - 6,991 through 7,005 (of 7,429 total)
Most of the study sites center around dumps of the questions and really this is not teaching you anything other than what the test has on it. The problem with...
March 6, 2002 at 5:43 am
I have run DTS packages simultaneous before and have seeen no issues, however the datasource was not changed so I cannot be sure what the side effect is, I believe...
March 6, 2002 at 5:33 am
Ok found this out, for some providers you have to have Distributed Transaction Coordinator running. When I turned it on I got the error for an Access database that Jet...
March 6, 2002 at 5:28 am
Tested and I always get an ODBC error, may just not be allowed under those circumstances, I will look for details and post if I find.
"Don't roll your eyes at...
March 6, 2002 at 5:20 am
Or try this, already put in stored procedure format:
CREATE PROCEDURE ip_GetMenuHier
@t_Menu_pk int --The bottom of the hierarchy.
AS
/* Create a local temp table to store our output until ready. */
CREATE...
March 6, 2002 at 5:02 am
Try this, this joing the two together to perform one select, barring any misunderstandings I have about your data this should work or at least give you some idea how...
March 6, 2002 at 4:31 am
Hey Andy, I would appreciate that code too if you'll write it.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
March 5, 2002 at 4:24 pm
I saw the movie, isn't the line
Loke, I am your..........MOTHER. (Thumbs Wars, much better than the original)
"Don't roll your eyes at me. I will tape them in place." (Teacher...
March 5, 2002 at 4:21 pm
Actually I would go this route with SQL
WHERE CONVERT(VARCHAR,mydate,101) = CONVERT(VARCHAR,GETDATE(),101)
This has IMHO less overhead on the CPU in comparing since both sides are converted and compared in the following...
March 5, 2002 at 4:20 pm
You know I always thought that as well, but if you look at a composite index under Show Execution Plan when quering for say State even if it is column...
March 5, 2002 at 4:13 pm
quote:
so if more quiries use City then City, State or if more use State then State,City
March 5, 2002 at 3:43 pm
Sorry, can I ask where you came across this. I have read in serveral places nothing like this only that when creating a composite index you should make the first...
March 5, 2002 at 3:25 pm
Make sure you are seperating your logic for the fields to insure your not just firing on any update if you are checking each. Also make sure you tie to...
March 5, 2002 at 3:16 pm
Ok first try this and then I will get more complicated it does not meet your needs. DISTINCT is for all columns in your select statement so if you reference...
March 5, 2002 at 3:00 pm
Take a look here at the following MS KB Article http://support.microsoft.com/default.aspx?scid=kb;en-us;Q248764 this should be your answer. If not let us know.
"Don't roll your eyes at me. I will tape them...
March 5, 2002 at 2:52 pm
Viewing 15 posts - 6,991 through 7,005 (of 7,429 total)