Viewing 15 posts - 31 through 45 (of 422 total)
With that many rows now it will take time, but setting up XML indexes can make a HUGE difference. Without seeing how your XML is being stored I can't really...
July 28, 2013 at 3:11 pm
syedshah (7/28/2013)
I have created a trigger to audit changes to table rows from my web application. My web application is using a single db user to do updates to the...
July 28, 2013 at 1:56 pm
dhananjay.nagarkar (7/27/2013)
Being new to sql, needed help on a urgent stuff-
The requirement is for field called "Final Approver"-
I nee to Show name of last approver in...
July 28, 2013 at 1:46 pm
engstevo (7/28/2013)
July 28, 2013 at 1:42 pm
The fatal flaw in your plan is the Pending Requistions table itself. Having the columns setup as you do now makes it not much more than an Excel-style flat file....
July 28, 2013 at 1:25 pm
dubem1-878067 (7/26/2013)
I have a table with 12 'bit columns' each of them reprensent a potential specific...
July 26, 2013 at 4:52 pm
sql server developer (7/26/2013)
July 26, 2013 at 3:23 pm
sql server developer (7/26/2013)
July 26, 2013 at 3:20 pm
I like it! I wonder if calculating the min and max values and passing them in as variables would adversely effect performance? That would (or could} keep the tally ...
July 25, 2013 at 11:33 pm
Thanks for the feedback!
I haven't had a chance to try your version yet, but I'll run it through my test script when I get time and will post my results....
July 25, 2013 at 10:42 pm
Ralf (7/25/2013)
in a SELECT, I would like to have a function which returns the minimum of dynamic list of values, like this:
select GetMin(4,3) => returns 3
select GetMin(4,3,1)...
July 25, 2013 at 10:21 pm
Perhaps this procedure will help.
If not a direct help, the underlying methods may be useful in some other way.
You should be able to use your...
July 25, 2013 at 9:51 pm
;WITH SampleData (ID,Fruit)
AS
(
SELECT 1,'Apple' UNION ALL
SELECT 2,'Orange' UNION ALL
SELECT 3,'Pear' UNION ALL
...
July 24, 2013 at 4:26 pm
sqlfriends (7/24/2013)
how...
July 24, 2013 at 4:03 pm
The parsing procedure I generally use (Parse XML to Table[/url]) does NOT preserve the spaces, so I made a slightly modified version that gives you the choice. I really don't...
July 23, 2013 at 10:22 am
Viewing 15 posts - 31 through 45 (of 422 total)