Viewing 15 posts - 61 through 75 (of 362 total)
If you are not calling the UDF in a loop (for perfomance reasons), something like ...
SELECT * FROM OpenRowset('SQLOLEDB', 'Server=(local);Trusted_Connection=yes',
'SET fmtonly OFF
exec master..xp_logininfo ') A
WHERE [Account Name] = 'BUILTIN\Administrators'
inside your UDF....
February 18, 2004 at 7:17 am
I am sure there is a solution to what you want. Can you provide a bit more specific information? Are you trying to call an SP that retruns a result...
February 18, 2004 at 6:47 am
If you do not need indexes, just table structures, you could, while the target is current and the tables do not yet exist on the target...
SELECT * INTO TableName FROM...
February 18, 2004 at 6:44 am
If you look at the "step details" of your job history, does it indicate any errors?
February 18, 2004 at 6:28 am
I tried Mike's suggestion of using ODBC instead, and the "disappearing table" symptom is no loger there. i.e. Its "fixed" now . Thanks.
February 17, 2004 at 12:32 pm
Frank, nice to see you back. I've also been gone a couple of weeks (not voluntarily - on the road/busy).
Thank you Frank and to all of you for making interesting...
February 17, 2004 at 12:11 pm
What is the reason the article states:
February 16, 2004 at 3:21 pm
I seem to remember a similar issue I had even with SQL2K. To get around the problem, I performed a simple "dummy" EXEC xp_cmdShell 'DIR \\PCName\Sharename' to "kick" SQL Srv into...
February 16, 2004 at 2:46 pm
What is the range of @yesterday_from and @yesterday_to?
What is the range / distribution of dates in c.datetime?
If the optimizer thinks that just a...
February 16, 2004 at 2:40 pm
Is the data actually just plain old readable text like a book? and you just want the potential user to navigate through some sort of "Tree View" representing a Table...
February 16, 2004 at 2:34 pm
And maybe CREATE TRIGGER ... INSTEAD OF INSERT ....
for inserting into the partitioned view while having new records going to correct uderlying table.
February 16, 2004 at 2:29 pm
I agree with the above comments. Also, I've found using a UDF instead of "inline" calculation is almost always slower (I have not found it to be faster, ever... but who...
February 16, 2004 at 2:26 pm
Basically a self join where outer table (GetNonNulls) WILL have a record
for any jobid recs that have a none NULL data rec with same jobid.
Then uses the vruconfirmation value from...
February 16, 2004 at 2:10 pm
Thanks Mike.
I'll try the ODBC method to see if symptom goes away in "production" stuff.
"Stuff" = periodic copy of data from LAN to DMZ where the "establishment" of the SQL...
February 3, 2004 at 7:02 am
Viewing 15 posts - 61 through 75 (of 362 total)