Viewing 7 posts - 18,916 through 18,923 (of 18,923 total)
Thanx for all your replies but I think I wasn't too clear in my question. I'm already well aware of the naming conventions and that this DB is breaking about...
July 7, 2004 at 6:36 am
Problem solved... I dropped the table and recreated it and it works like a charm again. Thanx for all your input.
June 29, 2004 at 7:32 am
I tried dropping the sp and recreating it like this but it still gives me the same error message.
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS OFF
GO
CREATE PROCEDURE [dbo].[DeleteADP] @PkADP as int
AS
SET NOCOUNT ON
if...
June 29, 2004 at 6:18 am
here's one function I like to use (works only with that have a Primary key):
CREATE FUNCTION [dbo].[CountALL] (@sTableName as varchar(255))
RETURNS int AS
BEGIN
--this is about...
June 28, 2004 at 6:47 am
This is just a hunche but have you tried :
select @query = N'SET ANSI_NULLS ON; GO; SET ANSI_WARNINGS ON; GO; select * from OPENROWSET(''MSDASQL'',''DRIVER={SQL Server};SERVER=127.0.0.1;UID=my_uname;PWD=my_pass'',''SELECT * FROM pubs.dbo.authors ORDER...
June 15, 2004 at 6:43 am
Yes everything works fine on the old server. the problem occurs only when I try running the queries on the new server when they have dates after the 12th...
May 27, 2004 at 10:39 am
I checked for the user who set the local setting and it's been set by the local admin. Collation type is the same on SERVEUR5 as SERVEUR4 (FRENCH_CI_AS)
Language is...
May 27, 2004 at 9:44 am
Viewing 7 posts - 18,916 through 18,923 (of 18,923 total)