Viewing 15 posts - 1,201 through 1,215 (of 5,504 total)
Please don't call us "blokes". This is not a chat room for kids but a professional forum.
Regarding the issue you're struggling with:
I recommend to call a stored procedure with the...
July 23, 2011 at 3:01 am
ESAT ERKEC (7/23/2011)
I found solution in here you can collect everythink....http://msdn.microsoft.com/en-us/library/cc645955.aspx
thanks for everybody....
That's the trace approach Gail mentioned in her first reply (option 2). Make sure you're taking care of...
July 23, 2011 at 2:55 am
Nice solution, MM!
Would it be possible to set the flag to either "true" or "false" depending on the value of frac or would this require a second update?
July 23, 2011 at 2:43 am
jonegerton (7/22/2011)
July 22, 2011 at 3:35 pm
sqlfriends (7/22/2011)
Thanks, and what is the difference between native client and ssms?
Straight off the web:
The SQL Server Native Client...
...contains the SQL Server ODBC driver and the SQL Server OLE DB...
July 22, 2011 at 3:29 pm
What do you define as a "SQL Server client"?
If you want to access data on a server, you could either use SSMS or any type of ODBC connect (e.g. ACCESS,...
July 22, 2011 at 2:23 pm
I'm not sure if there's an easy way to do it using XML DML, but here's a slightly different approach: shred the xml and rebuild it
; WITH cte as
(
SELECT ...
July 22, 2011 at 1:41 pm
As soon as you perform a SELECT * and you're looking for an index seek, you could either make Date the clustered index or add another index with all columns...
July 22, 2011 at 11:16 am
Are you looking for something along those lines?
SELECT
CustomerName AS '@name',
(
SELECT DiscountType AS 'discount/@name',
DiscountRate AS 'discount'
FROM @Customer c2 WHERE c1.CustomerName=c2.CustomerName
FOR XML PATH(''), type
)
FROM ...
July 22, 2011 at 11:08 am
I don't think we really disagree here, Elliott.
However, I would not compare a decision between SQL and .NET with a decision between Oracle and SQL Server.
To summarize it: "It depends."...
July 22, 2011 at 1:31 am
Or, to rephrase my previous post and put it a litlle more toward your original question:
have a look at the SQL Server related patches and what the fixes are about...
July 21, 2011 at 2:54 pm
I'm not sure if it's a "short sighted" position:
I'll have to deal with arguments like the number of viruses available to attack the systems and the risk/additional effort involved with...
July 21, 2011 at 2:43 pm
If you assign an alias like "ALE" to sep5.V_ALERTS you'll actually have to use it in your join syntax.
Replace sep5.V_ALERTS with ALE
July 21, 2011 at 2:26 pm
or do you, by any chance, have table names with a period being part of the table name? :sick:
Meaning sep5.V_ALERTS is not referring to table (view?) V_ALERTS in schema sep5...
July 21, 2011 at 1:53 pm
it might be this section of the code:
left outer join sep5.V_SEM_COMPUTER s4 on sep5.V_ALERTS.COMPUTER_IDX = s4.V_SEM_COMPUTER.COMPUTER_ID
There is an alias on "s4" on...
July 21, 2011 at 1:45 pm
Viewing 15 posts - 1,201 through 1,215 (of 5,504 total)