Viewing 15 posts - 23,926 through 23,940 (of 26,490 total)
Sanjay Rohra (11/4/2008)
sudeepta.ganguly (11/4/2008)
November 4, 2008 at 7:09 am
sudeepta.ganguly (11/4/2008)
November 4, 2008 at 7:06 am
That tells me that the version of MSDE you are running is SQL Server 2000 as well. All you need to do is a backup of the database on...
November 4, 2008 at 7:03 am
Jeff Moden (11/3/2008)
Sridevi (11/3/2008)
I wrote a function and i got the result too.
CREATE FUNCTION select_concat (@A INT )
RETURNS VARCHAR(MAX) AS BEGIN
...
November 3, 2008 at 10:01 pm
Have to agree with Sergiy on this one.
November 3, 2008 at 9:48 pm
And with all that having been said, you DON'T want to be shrinking the transaction log after every backup. You just force SQL Server to make it grow again...
November 3, 2008 at 9:28 pm
Jeff Moden (11/3/2008)
bang725 (11/3/2008)
hmmmm..." Not in " will take more time.
Heh... prove it. Got code? 😉
With no code, no idea of the data involved, my swag is both will take...
November 3, 2008 at 9:08 pm
1. Have you verified that the schemas and indexes are identical between databases.
2. Is there any difference the number of rows being insert between the databases.
3. Read...
November 3, 2008 at 9:00 pm
Garadin (10/31/2008)
1. Create a clustered index on your row# column. (It is most likely...
November 3, 2008 at 8:50 pm
Also curious, how big was the database you lost?
November 3, 2008 at 4:38 pm
Making a guess here about nvl...
This:
sysdate between org.effective_start_date and nvl(org.effective_end_date,sysdate)
would be this:
getdate() between org.effective_start_date and isnull(org.effective_end_date, getdate())
November 3, 2008 at 4:30 pm
what does this do: nvl(org.effective_end_date,sysdate)?
November 3, 2008 at 4:20 pm
paul.starr (11/3/2008)
how would i write this line:
--and between GetDate()org.effective_start_date and GetDate() org.effective_end_date
data types
EFFECTIVE_START_DATE ...
November 3, 2008 at 4:09 pm
As you are converting from pl/sql to t-sql, is it safe to say you are also porting the database from oracle to sql server? You provided the data types...
November 3, 2008 at 4:07 pm
Something is missing somewhere. I don't see anything that would cause this conversion error: Error converting data type nvarchar to float. The only non-character data type is ca.account_established_date,...
November 3, 2008 at 3:53 pm
Viewing 15 posts - 23,926 through 23,940 (of 26,490 total)