Viewing 15 posts - 271 through 285 (of 455 total)
Probabaly you may not want to use sp_ as prefix for you stored procedure as it is meant for the system stored procedures. I assume Monte just used it for...
September 19, 2006 at 6:04 am
Do you want to calculate difference between two days in terms of Years, Months and Days like difference between current date and '01/01/2000' or something of that sort?
September 19, 2006 at 5:59 am
SELECT TOP 5 * FROM dbo.Employee ORDER BY Salary_Col DESC
September 19, 2006 at 5:55 am
If you know the value that you need to update you can directly use it in the update statement
CREATE PROCEDURE dbo.Upd_TableName
AS
BEGIN
UPDATE dbo.Table_Name
SET column_name = 'Prasad'
END
But it would be...
September 19, 2006 at 5:52 am
Well, as you must be aware there are several limitations with SQL Server 2005 Express as far the Reporting is concerned, however it should definitely work on your local instance....
September 19, 2006 at 3:33 am
I believe you should install SQL Server 2005 Express Edition with Advanced Services to enable Reporting Services, I am not sure if you are already doing that.
September 19, 2006 at 2:48 am
Looks like it is database connection configuration issue. Please check if you can find the required information at
http://msdn2.microsoft.com/en-us/library/ms156468.aspx
Thx
September 18, 2006 at 11:18 pm
I am not sure of the access application but, it is always a good idea to use proper Locking options in your queries and stored procedures to avoid locking and...
September 18, 2006 at 11:11 pm
Yes, it makes more sense to use the trim functions when you have the columns that allow even the character datatypes.
September 18, 2006 at 10:37 pm
CREATE PROCEDURE dbo.Upd_TableName
@Value VARCHAR(50) --REPLACE WITH THE EXACT DATATYPE
AS
BEGIN
UPDATE dbo.Table_Name
SET column_name = @Value
END
September 18, 2006 at 10:11 pm
I am not sure if I understood your question, but per my knowledge printer would take the default paper size configured on the mapped printer. And if your default setting...
September 15, 2006 at 9:13 am
As suggested by Jeff I believe per your post, you are looking at only a subset of your base data, and you anchor all your logic off of a Temp...
September 14, 2006 at 11:30 pm
It really is interesting,
SELECT a, *
FROM a1
ORDER BY a1.a
GO
SELECT a, b
May 15, 2006 at 10:27 am
Infact you don't really need a brace
CREATE VIEW InventoryPublisherView AS
SELECT * FROM
May 15, 2006 at 10:18 am
Based on your posting
CREATE VIEW InventoryPublisherView AS
(
SELECT * FROM dbo.Inventory...
May 15, 2006 at 10:16 am
Viewing 15 posts - 271 through 285 (of 455 total)