Viewing 15 posts - 3,196 through 3,210 (of 7,498 total)
Is it always object ID 7:1086626914:0 that suffers this issue ?
declare @ObjectRef varchar(128)
Set @ObjectRef = '7:1086626914:0'
Declare @DbId varchar(128)
Declare @ObjectId varchar(128)
Select @DbId = substring(@ObjectRef, 1, charindex(':',@ObjectRef)-1)
, @ObjectId = substring(@ObjectRef,...
January 29, 2010 at 2:38 am
parthi-1705 (1/27/2010)
This Time my problem is bit different
I am having a database with daily Full backup i did not put Translog backup for...
January 29, 2010 at 2:04 am
As you have seen I prefer these kind of "lookup" values in table rows.
If you really need the "original" parsed value, on top of the actual individual value, just extend...
January 29, 2010 at 1:59 am
I have the vast impression it must be something with this sqlinstance... the box should be able to cope with the threads without a problem.
Another thing is we are having...
January 28, 2010 at 12:43 pm
any progress ?
January 28, 2010 at 12:39 pm
Keep in mind HOW a between works with string values !!
Here's another way to get started ...
-- TEST IT -- TEST IT -- AND SEE WHAT IT DOES !!!
Declare @InputTable...
January 28, 2010 at 8:03 am
As always it depends ...
Partitioning only uses a single column to work on ...
If you aim to partition on one of the columns that currently composes your primary key ......
January 28, 2010 at 6:54 am
- removed because of stupidity - to early in the morning :hehe:
[Second Edit]
... after the furst cup of coffee :w00t:
Did you try this ?
/*
dd 20100128
http://www.sqlservercentral.com/Forums/Topic699260-1291-1.aspx
How can I create a temporary...
January 28, 2010 at 12:15 am
Good feedback.
OT : Keep in mind you should avoid running in lower edition db-level ! So switch to your engines dblevel whenever you can !
January 27, 2010 at 7:12 am
Well .... altough I cannot get the point of using a "don't know what status it is in, but it is not a known status" ....
This may be what you...
January 26, 2010 at 12:42 am
Don't use the identity property in your reference table !
Create a trigger for Insert and and use the inserted object to load your target table.
Keep in mind to do this...
January 25, 2010 at 11:04 am
Hi Barry, must have been "last day of the week syndrome" 😉
Off course I should have posted the used DDL.
As stated in my previous post, i tried to play with...
January 25, 2010 at 12:09 am
As Gail already stated, you should implement this trigger to be able to cope with more than one row in the inserted and/or deleted internal objects !
e.g
--TEST IT -- TEST...
January 22, 2010 at 5:57 am
Tony Savoie (1/19/2010)
...We're off to a great start....this is the day after giving notice and he's called in sick 😉
That's very promissing towards the near future (post exit goodwill)...
January 21, 2010 at 1:41 am
You've been there for 6months, so you know your role/part.
Ask him how is day looks like, what he does when he comes to the office,
- what are/were his main...
January 18, 2010 at 1:57 pm
Viewing 15 posts - 3,196 through 3,210 (of 7,498 total)