Viewing 15 posts - 1,831 through 1,845 (of 2,612 total)
Just because it is a domain admin does not mean it is a local admin or SA on your database server. Since the service starts, it is unlikely that...
April 18, 2008 at 5:51 am
I have put lots of CTE's together is a single statement and never had any issues.
The NOCOUNT issue could be the problem.
And since I just had a fresh coffee...
Now that...
April 18, 2008 at 5:43 am
Sorry - it is the MERGE component (not the MERGE JOIN).
April 18, 2008 at 5:39 am
Using a third party component or a third party command line utility will still make you dependant on installing some third party software.
I also agree that creating a button-click schema...
April 18, 2008 at 5:34 am
In your report server database look in the ExecutionLog table.
April 17, 2008 at 12:57 pm
You already pretty much wrote the update
update table(1)
set column (1) = column (2) only when column (2) is not null
in T-SQL is
UPDATE table(1)
SET column(1) = column(2) WHERE column(2) IS...
April 17, 2008 at 12:22 pm
Object Explorer displays a treeview that you can navigate any servers you have an open connection to. Registered servers is where you register a server so you do not...
April 17, 2008 at 12:16 pm
That's the problem.
The registered servers are not displayed in the "Object Explorer" window.
There is a "Registered Servers" window that you need to display Ctrl+Alg+G or select it from the view...
April 17, 2008 at 11:58 am
Are you sure you are looking at the "Registered Servers" window and not the "Object Explorer" window?
April 17, 2008 at 11:45 am
...and yes I know that was a rather inefficient recusive CTE.
April 17, 2008 at 11:26 am
Ok, just to see if I could get this with a quick recursive CTE:
[font="Courier New"]; WITH DatePeriods (DateValue, StartOrEnd)
AS
(
SELECT DATEADD(DAY,-DATEPART(Day,GETDATE())+1,CONVERT(DATETIME,CONVERT(VARCHAR,GETDATE(),101))), 1
UNION ALL
SELECT DATEADD(DAY,-DATEPART(Day,GETDATE())+15,CONVERT(DATETIME,CONVERT(VARCHAR,GETDATE(),101))), 2
UNION ALL
SELECT DATEADD(Month,-1,DateValue), StartOrEnd FROM DatePeriods WHERE...
April 17, 2008 at 11:25 am
Oh - and Matt - that's pretty slick.
Hats off to you.
April 17, 2008 at 11:05 am
So I assume you want some way to "unscramble" the phone numbers?
If that is the case, you probably want to look into encryption.
April 17, 2008 at 11:05 am
Just to add to this, it is fairly easy to do. MS designed the platform with the intention of having developers create custom components.
April 17, 2008 at 11:03 am
Viewing 15 posts - 1,831 through 1,845 (of 2,612 total)