Viewing 15 posts - 8,596 through 8,610 (of 15,381 total)
a_ud (4/19/2013)
Seems to be that in the table I've got 2 'bit/binary' fields not initialised.If you delete them (or initialise them), the update is fine.
Thanks, advice always appreciated anyway!!
Glad you...
April 19, 2013 at 1:16 pm
SQL Pizza (4/19/2013)
April 19, 2013 at 1:12 pm
a_ud (4/19/2013)
In Access the primary key is VolunteerID, just as in SQL-S. It's just a table linked from SQL-S into Access.
The situation is:
-I can delete records directly in SQL-S.
-I...
April 19, 2013 at 1:09 pm
That is a might big topic. I would not rely too heavily on DTA or the missing indexes views. In fact, I would probably not even look at them. The...
April 19, 2013 at 1:02 pm
SQL Pizza (4/19/2013)
April 19, 2013 at 12:58 pm
What column is defined as the primary key in Access? It is possible that you have setup the linked table using a different column than the primary key.
April 19, 2013 at 12:53 pm
I don't think you want or need a pivot for this. However to be able to answer your question you first need to help us understand the actual issue. We...
April 19, 2013 at 12:50 pm
Even though that is the best approach for this situation you should still look at replacing your split function with the one I pointed you too. Post back if you...
April 19, 2013 at 10:05 am
kapil_kk (4/19/2013)
kapil_kk (4/19/2013)
Sean Lange (4/19/2013)
kapil_kk (4/19/2013)
Sean Lange (4/19/2013)
April 19, 2013 at 9:29 am
a20213 (4/19/2013)
If i have the text "i have lunched...
April 19, 2013 at 9:24 am
a20213 (4/19/2013)
FUNCTION [dbo].[Split](@String nvarchar(4000), @Delimiter char(1)) returns @Results TABLE (Items nvarchar(4000))
as
begin
declare @index int
declare @slice nvarchar(4000)
select @index = 1
if @String is null return
while @index != 0
begin
select @index...
April 19, 2013 at 8:42 am
You are welcome, glad that worked for you. Make sure you understand how that thing works.
April 19, 2013 at 8:38 am
kapil_kk (4/19/2013)
Sean Lange (4/19/2013)
kapil_kk (4/19/2013)
Sean Lange (4/19/2013)
April 19, 2013 at 8:32 am
buyme92 (4/19/2013)
input this URL:
spam reported
April 19, 2013 at 8:29 am
a20213 (4/19/2013)
declare @Names TABLE
(
name varchar(100)
)
DECLARE @Searchs TABLE
(
...
April 19, 2013 at 8:19 am
Viewing 15 posts - 8,596 through 8,610 (of 15,381 total)