Viewing 15 posts - 1 through 15 (of 47 total)
Thank you Jeff and dmoutray and the other contributors...I'm in Canada, near Toronto, and it's the Thanksgiving weekend. I'm in awe to the work you have done. Keep them coming...
I...
October 9, 2011 at 8:20 am
If you install SQL Server Accelator for BI (SSABI) -- if it is still available - the implementation of its generated DTS packages are all driven by variables, including INI...
April 11, 2008 at 9:13 am
So your solution is to use the Oracle driver from Oracle?
March 25, 2008 at 8:02 am
looks like you can still stop Analysis Services separately - if you run:
net stop MSSQLServerOLAPService
Johnny
July 16, 2007 at 2:32 pm
What would it take MS to increase "REFERENCES per table" from 253? (This is the number of foreign keys that a table can be referred to). In a large DW...
January 26, 2007 at 11:52 am
Hi,
In your code you use a lot of GROUP BY's --- can you explain why?
Thanks!
January 23, 2007 at 7:24 am
With SQL Server 2005, there should be no need to have dbo own any user table. It is now good practice to have a schema, rather than dbo. It is...
November 2, 2005 at 2:53 pm
Assuming there is an MeetingDate column, can it be as simple as this?
SELECT * FROM Employees
WHERE EmployeeID NOT IN
(SELECT EmployeeID
FROM MeetingAttendance
WHERE MeetingID=@MeetingID
AND MeetingDate BETWEEN @startdate...
October 27, 2005 at 4:15 pm
Luis and Lee's problems are caused by linked tables -- because you can not control the locking of linked tables (which by default will give you all the contents of th...
February 23, 2005 at 10:06 am
The lesson is - never rely on implicit conversion of date and time. Each locale will have its own date format. It's not only true in SQL Server, it is...
February 8, 2005 at 8:33 am
Based on your posts, it looks like this feature was added by accident rather than by design in SQLServer2000, and so should not become part of programming. Before I knew...
February 4, 2005 at 10:46 am
aha, so that's how you get answers - google! (and who doesn't?)
are these even going to go to SQL Server 2005? Some of these security permissions will need to be...
February 3, 2005 at 8:13 am
Then we should get a point if we answered error_line
I have not used these functions myself - so my answer was error_line. Error_level is...
February 3, 2005 at 8:00 am
Nonetheless, such AV should be reported to MS tech support because it is a bug. Microsoft will most likely not charge you with it if you can prove it is...
February 2, 2005 at 7:42 am
With this AV, it's time to contact MS Support. The SQL Server log may have more details.
January 26, 2005 at 2:32 pm
Viewing 15 posts - 1 through 15 (of 47 total)