Viewing 15 posts - 23,926 through 23,940 (of 26,484 total)
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
What version is MSDE? Can you connect to it with QA? If so, do this: select @@VERSION and report the results.
November 3, 2008 at 3:49 pm
Here is a starting point: BOL (Books On-Line).
Lookup the following:
sys.databases
sys.tables
sys.columns
sys.types
November 3, 2008 at 3:47 pm
Missing the data types for org.known_as and ca.attribute3.
November 3, 2008 at 3:41 pm
You can do this by one of two ways, backup/restore or detach/attach.
November 3, 2008 at 1:05 pm
If you check the code I posted, you'll see that I created a table, inserted some records, then added a column, and inserted additional records. I used the exact...
November 3, 2008 at 12:50 pm
Elisabeth Rédei (11/3/2008)
If you want a default value; use a Default getdate(), it you want to enforce a NOT NULL constraint; add a CHECK constraint. Or both.
You can add the...
November 3, 2008 at 12:34 pm
Viewing 15 posts - 23,926 through 23,940 (of 26,484 total)