Viewing 15 posts - 61 through 75 (of 363 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....
Once you understand the BITs, all the pieces come together ![]()
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...
Once you understand the BITs, all the pieces come together ![]()
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...
Once you understand the BITs, all the pieces come together ![]()
February 18, 2004 at 6:44 am
If you look at the "step details" of your job history, does it indicate any errors?
Once you understand the BITs, all the pieces come together ![]()
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.
Once you understand the BITs, all the pieces come together ![]()
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...
Once you understand the BITs, all the pieces come together ![]()
February 17, 2004 at 12:11 pm
What is the reason the article states:
Once you understand the BITs, all the pieces come together ![]()
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...
Once you understand the BITs, all the pieces come together ![]()
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...
Once you understand the BITs, all the pieces come together ![]()
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...
Once you understand the BITs, all the pieces come together ![]()
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.
Once you understand the BITs, all the pieces come together ![]()
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...
Once you understand the BITs, all the pieces come together ![]()
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...
Once you understand the BITs, all the pieces come together ![]()
February 16, 2004 at 2:10 pm
Jonathan ![]()
Once you understand the BITs, all the pieces come together ![]()
February 3, 2004 at 12:27 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...
Once you understand the BITs, all the pieces come together ![]()
February 3, 2004 at 7:02 am
Viewing 15 posts - 61 through 75 (of 363 total)