Viewing 15 posts - 4,216 through 4,230 (of 13,469 total)
Minnu (12/19/2012)
Yes,i want to update pre-existing data,
at present trigger is firing for only newly updated or inserted records.
i want Trigger should be fired one time for pre-existing data....
Please help
well, here's...
December 19, 2012 at 7:38 am
Minnu (12/19/2012)
Am having a trigger, which will update a column when insert / update occurs,
for new inserting or updating records trigger is working fine, but
am having a table, which...
December 19, 2012 at 7:18 am
Abrar Ahmad_ (12/18/2012)
That in previous releases i can define shortcut keys for my own purpose...
December 19, 2012 at 4:42 am
neither of those two flags are going to have any significant performance gains:
minimally logged inserts:
grow the files at once:
I'm skipping over the possibility of undersized hardware, memory, or slow disks...
December 18, 2012 at 3:24 pm
Google says it can be found here:
http://adventureworksdw2008.codeplex.com/releases/view/86762
December 18, 2012 at 1:31 pm
anthony.green (12/18/2012)
December 18, 2012 at 10:48 am
stating the obvious here, you should immediately remove that persons access to SQL server, and change the sa /other admin passwords.
make sure whatever application that is used to connect does...
December 18, 2012 at 8:56 am
another way to get your row counts; the indexes have the rowcounts built into the sys view:
--for 2005/2008:
Select OBJECT_NAME(object_id) as TableName,SUM(rows) as NumRows,index_id
From sys.partitions p
...
December 18, 2012 at 8:54 am
you can turn off the sp_execute scripting, so it's a cleaner CREATE / ALTER PROCEDURE.... by changing a flag the flag "Include IF NOT EXISTS Clause" in the scripting...
December 18, 2012 at 8:24 am
safzalhussain (12/18/2012)
December 18, 2012 at 7:41 am
GilaMonster (12/18/2012)
December 18, 2012 at 6:21 am
Jack 95169 (12/18/2012)
Nearly...You need to enable XP_cmdshell beforehand
I've also done a bit of tidying up
wow Jack you replied to a ten year old thread!
December 18, 2012 at 6:06 am
it starts out pretty much like every other desktop install around the office that is connecting to Oracle.
Use the oracle universal installer to install the client tools. See your It...
December 17, 2012 at 3:34 pm
well my colA and ColB resulsts seem to Me to be correct;
your expected results for ColB, where it's supposed to be by rank, doesn't match the data, i think.
ColC and...
December 17, 2012 at 2:26 pm
mkarthikeyyan 89837 (12/17/2012)
Please help to solve this !!!
i need to create tables and insert values in following tables, the scenario is
create table tbl1(tbl1_col1 int primary key ,tbl1_col2 int)
create table tbl2(tbl2_col1...
December 17, 2012 at 1:17 pm
Viewing 15 posts - 4,216 through 4,230 (of 13,469 total)