Viewing 15 posts - 1 through 15 (of 43 total)
Last night at our PASS Chapter user group we had a gentleman that has moved many of his servers to 2014 and he did a great talk on the troubles...
June 11, 2015 at 9:06 am
Since your seeks and scans are low , then maybe you don't have the right order when you create the index.
Granted this is only one idea.
[ROI_STAGE], [QC_DATETIME_STARTED], [INVOICE_STATUS_CODE]
Maybe it should...
May 21, 2012 at 12:23 pm
create table #t1( col int not null);
insert #t1(col) values(1),(1),(2),(3),(3)
select col from #t1
union
select col from #t1
union all
select col from #t1
select col from #t1
union all
select col from #t1
union
select col from #t1
select col...
March 8, 2012 at 7:47 am
Great videos.
The third one is exactly what I needed.
Thank you
November 22, 2011 at 10:50 am
Ron,
I missed it because ,
query 4
although inserts a record from the second insert statement,
the first insert statement fails, I guess rendering that query failed,even though something has been...
October 25, 2011 at 9:10 am
Well,
I have done it again managed to make a bonehead mistake.:hehe:
Connection Manager, I believe when I first started created the package I had trouble with the name of the connection,...
October 7, 2011 at 2:42 pm
Dan,
To run the job from ssms this is the way I started it, it starts successfully, I know this because in my ssis package, I have a couple of execute...
October 6, 2011 at 7:52 am
Yep found out the reason,
I needed to use the WITH LOG after my RAISEERROR function call. Severity 16.
All severities under 19 are not automatically written to the error log.
Nice...
September 16, 2011 at 10:54 am
The reason I chose 3 and 4 , was because of ambiguity.
It would seem to me that since you have two employeeIDs , since you are joining them.
SELECT a.EmployeeID FROM...
September 6, 2011 at 7:08 am
Not my intention.
Be careful, some of them are helpers on this forum!
Sorry, but the exams are frustrating, that is why they are exams. 😎
I am here to learn.
August 25, 2011 at 11:52 am
I get the same message when I try to create my non-clustered huge index.
I don't know but I think the exam is wrong!
August 25, 2011 at 11:47 am
Cool, I will do that.
Weird thing is the column name is lastName as an nvarchar(max).
So I could just assume the lastname will never be 2gb long, but it could possibly...
August 25, 2011 at 11:28 am
I had a great experience at the New York City SQL Saturday last winter.
Everything was well organized and the speakers did a great job.
I just wish there were more SQLSaturdays...
August 18, 2011 at 7:40 am
I think your connection needs to be on that specific Database , so use the USE AdventureWorksDW and then execute your select statement.
When I go back and forth in the...
August 12, 2011 at 1:21 pm
So, an informal SQL User Group meeting at the East Greenbush Library , at 6pm August 15.
Anyone is welcome.
August 8, 2011 at 10:45 am
Viewing 15 posts - 1 through 15 (of 43 total)