Viewing 15 posts - 2,956 through 2,970 (of 3,366 total)
You are right about that ETL developer is a separate profession with a 38 point steps developed and published by Ralph Kimbal one of the two people who implemented the...
February 23, 2007 at 3:30 pm
I don't know about FTP but you can email/postal mail the .bak file tell the person to put the .bak in the Backup sub folder in SQL Server folder then...
February 23, 2007 at 1:37 pm
Funny you cannot please everyone but DTS and SSIS are not the same thing one is a data transfer tool which got extended by users for other things, SSIS is...
February 23, 2007 at 1:12 pm
Securables is new fancy word for object permissions.
February 23, 2007 at 10:09 am
The result is dependent on what is in your AND filter now 2000 is funny it let people write code that 2005 will reject so I think you should run your...
February 23, 2007 at 9:30 am
I am glad I could help, in the future don't search in Oracle site search in Google with what you need I do the same with MSDN2.
February 23, 2007 at 9:21 am
Actually the download in the link below is what you need because 10g will not let you skip the installation of MTS in a Windows box. 8i is crappy a...
February 23, 2007 at 8:54 am
I don't think you should create role before users you may have run into orphaned permissions they are in the Master but not in the database you created the permissions. ...
February 23, 2007 at 8:49 am
LEFT JOIN AD ON A.[A] = AD.[A] AND A.A = 1
LEFT JOIN AD ON A.[A] = AD.[A] AND A.A = 3
Both are not using the same filter.
February 23, 2007 at 7:48 am
Per ANSI SQL 1999 the WHERE clause in a JOIN operation is a filter like the AND operator, and no LEFT JOIN can never be INNER JOIN because OUTER JOIN...
February 23, 2007 at 7:27 am
I dont think so but you can see the dependencies in the database diagram in Management Studio so you know what to change, it is easier in 2005 than 2000. ...
February 22, 2007 at 4:22 pm
ALTER Table Drop Constraint, ALTER Table Change Column, ALTER Table Add Constraint, ALTER Procs, ALTER Views and you can fix the dependency with Management Studio. A lot of details but...
February 22, 2007 at 4:01 pm
Microsoft XQUERY is very simple return the table with the SELECT add the XQUERY filters and apply predicates as needed at the end of the XQUERY, taking advantage of one...
February 22, 2007 at 3:49 pm
The reason for that is very simple 2000 does not shred or decompose the XML
February 22, 2007 at 6:41 am
UNION is the slowest operation for combining data because it performs implict distinct to eliminate duplicates, subquery is the same as INNER JOIN the fastest. If you don't want to...
February 21, 2007 at 3:35 pm
Viewing 15 posts - 2,956 through 2,970 (of 3,366 total)