Viewing 15 posts - 26,236 through 26,250 (of 26,488 total)
Have you tried dropping the the distinct from the derived table?
January 3, 2007 at 3:07 pm
truncate table #tablename
January 2, 2007 at 2:48 pm
Your problem now may still be permissions, but share permissions, not file permissions. We had an issue with a new hire accessing our VSS. He had permissions to the file,...
December 15, 2006 at 2:34 pm
Is it me, or does it appear that you haven't found someone that truely fits with this company?
December 15, 2006 at 1:42 pm
Using 2005, you could also use per-to-peer replication to keep both databases in sync.
December 14, 2006 at 2:23 pm
The problem may not be the table, but the query you are running. If you could post the DDL for the table, some sample data, and your query; we could...
December 14, 2006 at 1:28 pm
If you are trying to restore a database from SQL Server 2005 Express to SQL Server 2000, you are trying to restore from a newer version of SQL to an...
December 14, 2006 at 1:25 pm
Try this:
dateadd (DW,2-Datepart(dw,getdate()),getdate())
Also you can use SET DATEFIRST 1 to set Monday as the first day of the week, and then your function would work.
December 14, 2006 at 8:02 am
Only time I have had an 'Ambiguous column error' was when I forgot to specify the table name or use a table alias in the query. When ever I have...
December 13, 2006 at 8:05 pm
I have set the default locations on both SQL 2000 and SQL 2005 that way, and any databases I create through EM or SSMS have been created accordingly. The only...
December 13, 2006 at 3:56 pm
Pull up the properties for your database. Go to the Database Settings tab. There you will find a section: Database default locations. That is where you set the default locations...
December 13, 2006 at 2:16 pm
Opps. I meant the propereties for your server, not your database.
![]()
December 13, 2006 at 2:16 pm
First, I would rewrite the query using the ANSI standard join syntax:
SELECT name
FROM
sysobjects
inner join OurSysTables
on (name = Name)
Second, I would also rewrite the query as such:
SQL 2000...
December 13, 2006 at 10:36 am
Try update shop set TasksCompleted = isnull(TasksCompleted,'')+'3,' where ShopNo = '25'
I'm sure there are other ways to do this as well.
![]()
December 12, 2006 at 3:59 pm
Also, what is the data type for q.question?
December 12, 2006 at 3:04 pm
Viewing 15 posts - 26,236 through 26,250 (of 26,488 total)