Viewing 15 posts - 2,281 through 2,295 (of 5,356 total)
Are you sure on this?
Extending the examples from BOL
IF OBJECT_ID('get_sales_for_title') IS NOT NULL
DROP PROCEDURE get_sales_for_title
GO
CREATE PROCEDURE get_sales_for_title
@title varchar(80), -- This is the input parameter.
@ytd_sales int OUTPUT, -- This...
March 4, 2004 at 4:41 am
Can you post your code along with the *error* you get and what the result should look like?
![]()
March 4, 2004 at 4:17 am
That was also my thought that the trigger wouldn't compile at all because of this typo(?)
Never mind ![]()
March 4, 2004 at 3:39 am
Okay ![]()
Create a new exe-project in VB with a DriveListBox, DirListBox,FileListBox and an Image control
Add the following code
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub
---
Private Sub...
March 4, 2004 at 3:00 am
Would this work?
USE Northwind
GO
CREATE PROC proc_test
@Region varchar(30) = NULL
, @City varchar(30) = NULL
AS
SELECT
CustomerID
, CompanyName
, ContactName
, ContactTitle
, Address
, City
, Region
, PostalCode
, Country
, Phone
, Fax
FROM Customers
WHERE...
March 4, 2004 at 1:22 am
Good point Chris. ![]()
I bet they have sold Standard Edition to my company with the promise that it is ready for clustering. Fools are...
March 4, 2004 at 12:46 am
I don't think I yet qualify for grasshopper.
What would you suggest instead?
![]()
March 4, 2004 at 12:40 am
I know you can "edit" your post. Noel, can you try to "delete" 2 of the 3 posts? or maybe at least edit them to loose thier contents?
Not only can...
March 4, 2004 at 12:37 am
I forgot, when scaling out I would start with an own filegroup on a separate disk for that table.
March 3, 2004 at 3:30 pm
I would start at the very basic with reviewing the table design. You can't get good performace on a poorly designed table. Next would be the indexes (especially the clustered...
March 3, 2004 at 3:27 pm
Being acquired by Oracle is not necessarily a good thing. And successfully is not equal to good.
But who am I to judge on this?
March 3, 2004 at 2:55 pm
Sorry Rob, I didn't mean you, but rather put it in here as a general remark. I admit my remark was ambiguous.
March 3, 2004 at 2:51 pm
No way that I know of.
At least I can't find my favorites in the registry or some file in the BOL directory.
But I would love to be mistaken on...
March 3, 2004 at 2:48 pm
Viewing 15 posts - 2,281 through 2,295 (of 5,356 total)