Viewing 15 posts - 1,051 through 1,065 (of 1,993 total)
i'm sure you've already checked , but can you run the query from your database and make sure you specify the schema name (but not the db)
ie select x,y,z from...
MVDBA
June 8, 2012 at 4:28 am
a couple of things here
IF @NextOrderNo is null
begin
SET @OrderNo = (SELECT NextNo FROM NxNo (Nolock))
update NxNo set NextNo = NextNo @increasevalue
end
1) remember to use the WITH statement for your...
MVDBA
June 8, 2012 at 4:23 am
derek.colley (6/8/2012)
Sounds like the view is doing an implicit conversion of the VARCHAR column to INT.
Please post structure of...
MVDBA
June 8, 2012 at 4:13 am
tbraithwaite (6/8/2012)
I have a table that has a column [unique_name] defined as Varchar(64) and this contains ID numbers some of which have...
MVDBA
June 8, 2012 at 4:12 am
balasach82 (6/1/2012)
We are using sp_OACreate, sp_OAGetErrorInfo, sp_OAMethod, sp_OAGetProperty, sp_OADestroy.
Error occurs only for some of the records which satisfies a particular condition and not for all records. Even though, we get...
MVDBA
June 6, 2012 at 4:05 am
i also had to count out loud the alphabet then decided ASCII('a') and ASCII('z') gave me the numbers i needed
MVDBA
June 1, 2012 at 9:44 am
looks like you could use a TVP (table value parameter)
it's bets not to pass delimeted strings in as parameters
try the following - (example code only)
CREATE TYPE xtype as TABLE(id int)
GO
create...
MVDBA
June 1, 2012 at 9:40 am
and how many connections are currently open on your server (perhaps your application is not closing connections properly - it's not unheard of!!!)
also - how much RAM on the box...
MVDBA
June 1, 2012 at 9:29 am
what is your max worker threads setting?
MVDBA
June 1, 2012 at 9:28 am
are you using SP_OA calls?
please can you post the code that generates the error...
that error is typically a COM/REGISTRY issue for an sp_oa call to a DLL
MVDBA
June 1, 2012 at 9:25 am
im guessing that the OP wants
Apples
bannanas
Chocolate
Coffee
turning into
A
Apples
B
Bannanas
C
Chocolate
Coffee
MVDBA
June 1, 2012 at 9:21 am
something like this
with x (id,letter)
as
(
select 65 as id, CHAR(65) as letter
union all
select ID+1,CHAR(id+1) as letter from x
where ID<90
)
select letter as name from x
union all
select name from sysobjects
order...
MVDBA
June 1, 2012 at 9:16 am
are you doing full backups at any point in your maintenance plan - log shipping does not prevent you from running full (non-copy only) backups - it just re-starts your...
MVDBA
June 1, 2012 at 9:09 am
Jonathan AC Roberts (6/1/2012)
michael vessey (6/1/2012)
If you are supplying SQL Server have multiple vendors and using SPLA licenses the cost is not far off $1,000 per cpu per month for...
MVDBA
June 1, 2012 at 7:50 am
Viewing 15 posts - 1,051 through 1,065 (of 1,993 total)