Viewing 15 posts - 91 through 105 (of 815 total)
and this link will guide you how to export from sql to oracle :-
January 12, 2012 at 6:07 am
Now, how to restore AdventureWorks database from AdventureWorks2008R2_Data.mdf file?
What if you create a blank file and name it as AdventureWorks2008R2_log.ldf and then try to attach the mdf and ldf file....
January 12, 2012 at 3:58 am
if you mean destination change from sql server to oracle server then I dont see any reason why you cant.
Or what alternate your can also do is :-
keep the dts/ssis...
January 12, 2012 at 3:40 am
The base query to find the number of records in a table is :-
select OBJECT_NAME(object_id) as TblName, rows as NumberofRecords from sys.partitions
where OBJECT_NAME(object_id) like 'TBL_TOC%'
Then you can further fine...
January 12, 2012 at 3:36 am
Google is best person to answer all your latest queries. Just copy paste it in google and you will get best answer.
January 11, 2012 at 2:55 am
I want to know what is the difference between partitioned table and indexed table. indexing is used for faster searching. What is the main advantage of partitioning...
January 11, 2012 at 12:03 am
I will suggest have the database based on domain specific or "common group of users" specific.
January 10, 2012 at 11:58 pm
a.borgeld (1/10/2012)
Specs:VM-ware
Dual core
8 gig memory
64 bit hard and software (Windows 2008 R2 + SQL server 2008 R2)
How many databases can i run on a single instance?
Answer is, it depends :-
1)...
January 10, 2012 at 11:55 pm
what is the best way to do this? can I set up logshipping between 2 different datacenter servers? if so
what kind of things we need to set up or...
January 10, 2012 at 11:09 pm
Normally, we take table backup using
SELECT * INTO new_table_name FROM old_table_name
if we do so, can we get the table backup with same old table structure (including primary & foreign...
January 10, 2012 at 10:57 pm
i feel it as too much complicated when we have the import/export functionality available.
January 10, 2012 at 2:35 am
Not going to write the code, but my high level solution design for this :-
Whatever the table/s you Want to audit, create one audit table for primary table.
For ex., if...
December 23, 2011 at 10:09 am
Season Greetings and Marry Christmas to all.
Youth is when you're allowed to stay up late on New Year's Eve. Middle age is when you're forced to.
December 23, 2011 at 5:12 am
script out all the tables(only with schema) and in advanced tab, select "Script Indexes = True"
If your database have unexpected number of tables, then you can script out only required...
December 23, 2011 at 3:55 am
No. To upgrade any database to 2012 which is below 2005, you have to first upgrade the database to 2005/2008 and then only will be able to upgrade to 2012.
December 19, 2011 at 2:30 am
Viewing 15 posts - 91 through 105 (of 815 total)