Viewing 15 posts - 706 through 720 (of 920 total)
In my last place of employment we used both Sybase and SQL Server. Everything worked well as long as we kept the collation (code page, for us old folks) the...
November 16, 2006 at 4:02 pm
My understanding (which may be flawed) is that if you bought the SQL Server with the 'per cpu' option, then you can hit it with as many folks as it...
November 16, 2006 at 3:55 pm
Try adding a length specification to the variable definitions:
@dhb_service char(255), @dhbname char(255)
or make them varchar(255), or whatever matches the datatype you're looking up.
November 14, 2006 at 7:18 pm
This
select
getdate() where 0.0 > 0
will return nothing.
You have to convert the strings to numerics
select
...
November 9, 2006 at 6:44 pm
Can you run the Profiler and then connect the web servers one at a time? The Profiler trace should tell you what the server is working on.
November 7, 2006 at 6:32 pm
What permissions do you have on the table, and in the database?
Please post the actual query you're trying to run and the table DDL, including indexes.
What error messages do you get...
October 19, 2006 at 5:25 pm
If the table has a uniqe value on which the result set is being ordered, you can do something like:
create table junktable (p_key int not null,
fielda int not null)
go
insert junktable (p_key,...
August 12, 2006 at 4:37 pm
Check with the DBA to make sure you still have permissions to insert to the table. If the permissions are OK, ask him or her to run the traces mentioned...
July 21, 2006 at 10:08 am
Can you turn on a profiler trace, or an odbc trace, to trap the sql and any associated errors?
Can you log in to the sql server OK?
Do you know of...
July 20, 2006 at 7:17 pm
How are you trying to add the data and what, if any, error message are you getting?
July 20, 2006 at 6:27 pm
I used to do this all the time. You have to install the Sybase Open Client on the machine on which the DTS packages will run and you have to...
July 19, 2006 at 10:01 pm
Your 15th trip throught the while loop gets a row and prints. Your net loop through doesn't get a row and setus the status, but you print regardless so it...
July 18, 2006 at 11:02 am
I used to work for a place where 60 hour weeks were the norm. The strange thing was that the group of people working together had a real chemistry and...
July 11, 2006 at 6:06 pm
I'm not sure I understand the question. Do you have two points and need to know if they are within 1 or 5 miles of each other? Do you have only...
July 11, 2006 at 5:58 pm
Could you get the execution plans for the two queries and see what is different. Sometimes a service pack will include tweaks to the optimizer that might (gasp) de-optimize some...
July 7, 2006 at 5:15 pm
Viewing 15 posts - 706 through 720 (of 920 total)