Viewing 15 posts - 1 through 15 (of 28 total)
John Mitchell-245523 (6/30/2016)
June 30, 2016 at 5:05 am
yes same issue
June 30, 2016 at 4:47 am
Jeff Moden (12/18/2013)
December 19, 2013 at 7:32 am
Sean Lange (6/20/2013)
ali.m.habib (6/20/2013)
Sean Lange (6/20/2013)
ali.m.habib (6/20/2013)
create proc calcaulateavaerage
@studentid int
as
begin
-- some complecated business and query
return @result -- single decimale value value
end
and then I...
June 20, 2013 at 12:19 pm
Sean Lange (6/20/2013)
ali.m.habib (6/20/2013)
create proc calcaulateavaerage
@studentid int
as
begin
-- some complecated business and query
return @result -- single decimale value value
end
and then I want to
create...
June 20, 2013 at 12:06 pm
it was stopped and when running it it raise error and by have look on the system log I found
event id :7024
The SQL Server (MSSQLSERVER) service terminated with service-specific...
December 1, 2010 at 7:55 am
Yes I did but the same eror appear, is this a problem in collation and if yes how to get the windows collation and sql server collation
Jack Corbett (11/16/2009)
November 16, 2009 at 8:02 am
Dave Ballantyne (8/25/2009)
Hold on , why have you used binary datatypes?
it's a security issue , and I am not the resposable of the design
August 25, 2009 at 4:27 am
Dave Ballantyne (8/25/2009)
Create a unique index on the column , and stop the issue happening in the first place
how to update the old data such that no repeated time appear
August 25, 2009 at 4:22 am
kevriley (8/19/2009)
However I'm sure this cursor can be better written - can you post table definition for...
August 19, 2009 at 8:13 am
kevriley (8/19/2009)
However I'm sure this cursor can be better written - can you post table definition for...
August 19, 2009 at 7:56 am
you can't use the case like that in where clause
try this
CREATE PROCEDURE [dbo].[usp_faculty_letters_by_course_type] --usp_faculty_letters_by_course_type 'jumpstart'
@course_type varchar(50)
AS
BEGIN
SET NOCOUNT ON;
SELECT DISTINCT left(lastName, 1) as firstInitial, GRI, JUMPSTART, REMASTERS
INTO #tempFirstInitial...
August 19, 2009 at 1:15 am
Lowell (7/28/2009)
show us your function call;here's an example of using a linked server to get a function call back, does this help?
exec ServerName.master.dbo.sp_executesql N'Select SERVERPROPERTY(''MachineName'')'
select [LINKEDSERVER1].DB.dbo.T_DATE('D')
this run the function named...
July 28, 2009 at 7:36 am
Jeff Moden (7/8/2009)
ali.m.habib (7/8/2009)
Jeff Moden (7/7/2009)
July 8, 2009 at 7:23 am
Jeff Moden (7/7/2009)
July 8, 2009 at 12:04 am
Viewing 15 posts - 1 through 15 (of 28 total)