Viewing 15 posts - 3,961 through 3,975 (of 7,429 total)
I didn't think with regards to that, that anything was different. Might watch both with profiler to see if anything happens on the backend under the hood. But considering they...
December 5, 2002 at 5:28 pm
So far I have not seen any jobs requesting an MCDBA without experience. I made myself a position during our Y2K roleover is how I got my foot into the...
December 5, 2002 at 5:23 pm
Question duplicated in the following thread please see both for future reference http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=8571&FORUM_ID=19&CAT_ID=3&Topic_Title=How+to+run+a+dts+package+by+a+user+who+is+not+in+u&Forum_Title=Data+Transformation+Services+%28DTS%29
December 5, 2002 at 5:11 pm
I thought DBF was a sturtured file, not delimited. Try using DTS to pull in with the FoxPro provider. Don't think Bulk Insert can do it.
December 5, 2002 at 5:10 pm
Ok, setup profiler on the server and see if it shows anything specific would be my next spot to look. Watch what happens and see if any events occur taht...
December 5, 2002 at 5:09 pm
No, but you could build a mechanis into your app to capture the user, timeofstart and spid each time someone starts the app.
December 5, 2002 at 5:05 pm
I believe if you are talking about dynamicSQL method it will be based on either the users login account (which would have to be a windows account) or the servers...
December 5, 2002 at 4:58 pm
I haven't seen any major hits on resources in my solution. Let me know if you need help, should be interesting to try that way.
December 5, 2002 at 4:55 pm
How are they accesing the information. You maye just need to create a VB DLL to get the file creation or modified date and pass to them. But as to...
December 5, 2002 at 4:46 pm
I believe thou you can create a temp table instead liek
CREATE TABLE #var (x int)
and use a reference inside the UDF to #var. As long as in the same...
December 5, 2002 at 4:43 pm
Actually I do this with a schedual adhrence app that I created to verify a person is on the phone when they should be and not when they should not.
Since...
December 5, 2002 at 4:37 pm
Look at your execution plan for each and make sure are the same. Also, consider other loads and a stored plan can effect overall performance on queries. I have never...
December 5, 2002 at 4:23 pm
DYnamic mean can be change at runtime. In the case the variables are dynamic in that the compiled code expects these twos values to change and needs that input from...
December 5, 2002 at 4:17 pm
You might also want to try using profiler to catch what is happening with the database. A few notes, Temp tables, order by and suqueries make inserts into that database...
December 5, 2002 at 4:07 pm
Besides on the row level I believe varchars physically vary and there is a pointer object to define next column. So unless all your data does not use any of...
December 5, 2002 at 4:00 pm
Viewing 15 posts - 3,961 through 3,975 (of 7,429 total)