Viewing 15 posts - 3,811 through 3,825 (of 7,503 total)
So you were able to create the tables (please create them in their own database, and not in any of the system databases (master, msdb, tempdb, model))
Maybe using the GUI...
April 13, 2009 at 6:42 am
great solution Bob.
Nice application of outer apply. Still have to get used to that feature 😎
April 13, 2009 at 3:44 am
start with:
Select ...
from information_schema.tables
where table_name like '%yourcryteria%'
order by table_name
April 12, 2009 at 11:07 am
Just like the others, I would suggest to first concentrate on TSQL, Management studio and sqlserver organisation (detailed if needed), then you'll get to sqlcmd for deployment facilities,...
April 12, 2009 at 11:06 am
If this is a single shot action (migration ?) it may be best to use Microsofts migration assistant for Oracle. It can be downloaded free from here :
http://www.microsoft.com/sql/migration/
This may...
April 12, 2009 at 9:32 am
barryocteau (4/11/2009)
April 12, 2009 at 9:29 am
bambang (4/11/2009)
Thanx for your suggestion, but it's not work yet.
The query result would be like this :
PrimaryKey1 PrimaryKey2 TitleOrder Title TitleDescription
1 1 0 Movies A great movies
1...
April 11, 2009 at 11:09 am
In many cases, problems start with people creating every column nullable - except for the primary key column(s) - without popping the questing of for that specific column NULL is...
April 11, 2009 at 10:04 am
bambang (4/11/2009)
I have a problem to update data from table.
The Source table looks like this:
PrimaryKey1 PrimaryKey2 TitleOrder Title ...
April 11, 2009 at 6:47 am
- Post the xml schema and we may be able to get you on track
- maybe my recent post can help a little.
http://www.sqlservercentral.com/Forums/Topic678236-21-1.aspx
April 10, 2009 at 11:13 am
Do you have access to visual studio team edition for database admins ?
April 10, 2009 at 11:06 am
Steve Jones - Editor (4/10/2009)
Gail, happy to give you moderator privs if it wouldn't add another 150-200kb to your download 🙁.....
As long as it doesn't add Kg's ... :w00t::-D
Hey, maybe...
April 10, 2009 at 8:04 am
I tested it overhere and always got the correct results (x86 (std ed)and x64 (ee))
select LEFT(NULL,ABS(CAST(CHARINDEX('.',NULL) AS INT)-1))
select LEFT(NULL,ABS(CAST(CHARINDEX('.',NULL) AS BIGINT)-1))
select LEFT(NULL,ABS(CAST(ISNULL(CHARINDEX('.',NULL),NULL) AS INT)-1))
go 1000 -- executes the previous batch...
April 10, 2009 at 6:10 am
you may want to try it out by logging on to your server that launches the ssis package and using that service account (or proxy).
Then try to use the unc...
April 10, 2009 at 6:06 am
are you using the same ansi settings when executing on the different instances ?
What do you expect as a correct result ?
April 10, 2009 at 5:44 am
Viewing 15 posts - 3,811 through 3,825 (of 7,503 total)