Viewing 15 posts - 4,426 through 4,440 (of 5,103 total)
"BOL suggests that TOP should be used:"
"It is recommended that DELETE, INSERT, and UPDATE statements currently using SET ROWCOUNT be rewritten to use the TOP syntax. For...
July 14, 2004 at 7:15 pm
Bill,
From what you described i get the impression that it maybe possible to use the sqlweb release features of sql2k to handle xml over http. If that were possible you...
July 14, 2004 at 6:47 pm
Thank you very much for your leg work it is something difficult to spot and definitely will go into my bag of "check before release"
July 14, 2004 at 6:27 pm
Can you be a little more specific? What do you mean by ten times consecutively?
1. That it went 10 in the same date
2. That the region is visited 10 times...
July 12, 2004 at 9:33 pm
I don't see what's the problem with using the newid() function in your procedure. The real cool thing about the uniqueidentifier column type is that you can know in the...
July 12, 2004 at 9:23 pm
Being a consultant I really dislike questions like this. From my point of view you are waisting my time. With any answer that I could give you won't know if I will...
July 9, 2004 at 12:54 pm
Let me add one more thing when the complexity of the operations are high there is NOTHING like a stored procedure. With stored procedure you can ENFORCE Filters (parameters). You...
July 7, 2004 at 11:55 am
the above will give you the space USED but if you need the space ALLOATED (os size) then try
sp_helpdb
HTH
July 6, 2004 at 12:08 pm
I am here all 100% with rockmoose I try A LOT to use sp as much as I can. Why? The indirection level that it provides (Isolation from data structure)...
July 6, 2004 at 11:39 am
Just to make the point clear sysproceses will give you a snapshot of tha activity at the time you run the query against it (as profiler does) but if you...
July 6, 2004 at 10:04 am
I suggest you run a Profiler trace to find out what is really going on. I have scheduled very complex stored procedures with no problems at all. The only difference...
July 6, 2004 at 9:46 am
My Opinion though, is that adding a column to a table might cause fragmentation. If your pages are full enough you will need to fit the data on the page...
July 5, 2004 at 3:53 pm
You are going to be able to grab it only if it uses integrated security or if the app grabs it form client and logs it somewhere on the server
HTH
July 5, 2004 at 3:24 pm
Eventhough creatting a trigger for that is not a difficult thing if you are allowed to use all the capabilities of sql server 2000 you have another choice: Indexed views...
July 4, 2004 at 1:44 pm
or:
select CustomerId
from customers
group by CustomerID
having
Sum(case when storetype ='Mall' then 1 else o end) > =1
and
Sum(case when storetype ='Boutique' then 1 else o end) > =1
July 1, 2004 at 8:30 pm
Viewing 15 posts - 4,426 through 4,440 (of 5,103 total)