Viewing 15 posts - 5,371 through 5,385 (of 9,643 total)
I'm not sure what you mean by querying. You can apply a where clause and join to the function. Like this:
SELECT
*
FROM
...
April 15, 2009 at 11:42 am
Gift Peddie (4/15/2009)
Jack,I think the person is talking about my solution but I still thinks the vendor of the software should be contacted if their developer wrote crappy code.
Oh...
April 15, 2009 at 9:01 am
Right you are the DBA and if you are running any version of SQL Server 2005 there is a Default Trace that is installed and started, unless someone manually turned...
April 15, 2009 at 8:39 am
What is in start-time, last_event_time, and event_count? I would venture to say that the file is not created until an event is created.
Are you looking in the D: drive...
April 15, 2009 at 8:32 am
What do you get when you run this query:
SELECT
*
FROM
sys.traces
WHERE
is_default = 0
The status column should be 1 if it...
April 15, 2009 at 8:15 am
I think it is unlikely that the shutdown was caused by SQL Server and then SQL Server restarted without issues. Did you check the SQL Server error logs?
April 15, 2009 at 7:19 am
You may want to contact Shelby about this to see if they have any experience with this issue. You can also check this article
April 15, 2009 at 7:17 am
In your sample data you are trying to get 'Angola' to be like 'Angola Black Antelopes' which will not work as LIKE requires the Right Side to be a subset...
April 15, 2009 at 7:07 am
Greg Charles (4/14/2009)
April 15, 2009 at 6:51 am
If you are really on SQL Server 2005 (based on the forum) you could query the Default Trace for the Object:Deleted event limiting the results to tempdb. One thing...
April 15, 2009 at 6:48 am
Great article Tim. I don't currently have to work with anything like this, but it is a good overview of using the Script Component in addition to the tutorial...
April 15, 2009 at 6:19 am
Barry is clearly not attempting to be condescending in the article. He lists reasons he has seen and experienced for why people use cursors. He also clearly states...
April 14, 2009 at 7:57 pm
Thanks, but Noel's solution is the same with respect to the joins. Noel just added distinct and accesses the Client as well, but is essentially the same.
You can use...
April 14, 2009 at 1:35 pm
Viewing 15 posts - 5,371 through 5,385 (of 9,643 total)