Viewing 15 posts - 2,341 through 2,355 (of 2,462 total)
I want to start by saying that I am not providing an answer here but rather providing a little food for thought....
All permissions are the same on both servers.
But the...
-- Itzik Ben-Gan 2001
November 29, 2012 at 7:12 pm
Great, great article Dwain. Amazing work and perhaps your best article yet on SSC IMHO (it's certainly your longest).
I would have been delighted to propose a looping solution as...
-- Itzik Ben-Gan 2001
November 29, 2012 at 6:48 pm
mike 57299 (11/28/2012)
... As part of our backup plan, we do transaction log backups every hour during the work day.
I would like to copy the logs to...
-- Itzik Ben-Gan 2001
November 28, 2012 at 4:05 pm
sa.ordekci (11/28/2012)
...As i know, indexed fields increase searching time. For example primary key.
Indexes usually make queries faster. Primary keys usually make queries faster because an index is created when you...
-- Itzik Ben-Gan 2001
November 28, 2012 at 3:59 pm
Evil Kraig F (11/28/2012)
Alan.B (11/28/2012)
Evil Kraig F (11/28/2012)
This is NOT pretty, but it IS functional.
I am trying to understand why went with a loop vs a set-based approach. I posted...
-- Itzik Ben-Gan 2001
November 28, 2012 at 3:20 pm
Evil Kraig F (11/28/2012)
This is NOT pretty, but it IS functional.
I am trying to understand why went with a loop vs a set-based approach. I posted a more set based...
-- Itzik Ben-Gan 2001
November 28, 2012 at 3:00 pm
This is a bit tricky and I am still working on this. Here's what I have thusfar...
--Create temp table to hold the dummy data
if object_id('tempdb..#IDs') is not null
drop table #IDs
CREATE...
-- Itzik Ben-Gan 2001
November 28, 2012 at 2:11 pm
By "apply a style sheet" are you talking about applying an XML transform using XSLT or apply CSS formatting?
-- Itzik Ben-Gan 2001
November 28, 2012 at 9:57 am
You can also do this (I'm just showing another way to pivot):
;WITH sourceData ([RowID],[Region], [Factor])
AS
(
SELECT '1','Capitol',' Text1' UNION ALL
SELECT '2','Capitol',' Text2' UNION ALL
SELECT '3','Capitol',' Text3' UNION ALL
SELECT '1','Central',' Text4'...
-- Itzik Ben-Gan 2001
November 28, 2012 at 9:47 am
No problem.
-- Itzik Ben-Gan 2001
November 28, 2012 at 9:33 am
Just wanted to know whether it is correct because i will doing it on the production and have to be very sure before doing and don't have any test...
-- Itzik Ben-Gan 2001
November 27, 2012 at 10:00 pm
Edit: I misunderstood your question... What's with the NULLS?
-- Itzik Ben-Gan 2001
November 27, 2012 at 8:40 pm
Is DBA a limited Profession? Short answer: No. Long answer: Nope.
-- Itzik Ben-Gan 2001
November 27, 2012 at 4:03 pm
nsrikanth.seo (11/26/2012)
The XML DOM defines a standard way for accessing and manipulating XML documents.The XML DOM views an XML document as a tree-structure.
Thank u,
Regards
Srikanth
rxonlineshopee.com:-)
The DOM presents an XML document as...
-- Itzik Ben-Gan 2001
November 27, 2012 at 3:58 pm
I have seen it done with Sharepoint 2010 and using the Microsoft Report Viewer Redistributable. I have never done it though nor am I a Sharepoint guy.
-- Itzik Ben-Gan 2001
November 27, 2012 at 3:44 pm
Viewing 15 posts - 2,341 through 2,355 (of 2,462 total)