Viewing 15 posts - 616 through 630 (of 1,539 total)
You add/register an external DLL by using sp_addextendedproc.
This URL tells you how to do it.
July 27, 2009 at 8:32 am
a2zwd (7/27/2009)
I was given a job to design the database for my application.
What is the procedure to design the database.
I mean the tools, database design life cycle, any...
July 27, 2009 at 8:13 am
In 2000, after rebuilding master database, we need to attach each external dll files as extended stored procedures seperately. Not sure on how to do in 2005.
July 27, 2009 at 7:59 am
viji (7/27/2009)
i want to close all the connections but not to take the db offline.
The first two lines from the post of Victor are other two methods on how to...
July 27, 2009 at 7:39 am
If the primary key is numeric and keeps on increasing, this code should just do fine.
select top 10 * from YourTable ORDER BY yourPrimayKeyColumnName DESC
Pls share some primary key values...
July 27, 2009 at 1:40 am
Do you have a date column on the table? or identity columns? you can query the table using ORDER BY clause.
July 27, 2009 at 1:20 am
stevefromOZ (7/26/2009)
@pradeep-2, different type of checkpoint (another case of MS re-using names :hehe:)
They could have used atleast a synonym for the word checkpoint.:ermm:
That link was useful. thanks.:-)
I think this is...
July 26, 2009 at 11:08 pm
viji (7/26/2009)
thanks,is there any other command just to close all the connections??
regards
viji
The command i wrote would be sufficient. the other way is to terminate all open connections using KILL.
July 26, 2009 at 10:19 pm
sqlcool (7/26/2009)
This is first time i am doing this pls help
I was told to restore(refresh) database every 30 mins i am getting files from server every 30 mins...
July 26, 2009 at 10:13 pm
When the package failed, it must have rolled back which means whatever was inserted would be undone. Atomicity of a trasaction means either all or none. So either all records...
July 26, 2009 at 9:30 pm
Delete the entry from registry.
Go to HKCU>Software>Microsoft>Microsoft SQL Server> 80>Tools>SQLEW>Registered Servers X> SQL Server Group
Check out for the group name from the same location and then delete the registry entry...
July 26, 2009 at 9:14 pm
luckysql.kinda (7/26/2009)
Is there any way to read the DB when this is in ‘Restoring’ mode. I tried SNAPSHOT but this didn’t help.-Lucky
I dont think so. The database is in norecovery...
July 26, 2009 at 9:04 pm
query the sys.schema view
select name from sys.schemas where schema_id in(select uid from sysobjects where name = 'PurchaseOrderDetail')
July 26, 2009 at 8:58 pm
isabel (7/26/2009)
Write on '\\backupdevice\BakDiff.bak' failed, status = 64What could probably be the problem?
This looks like SQL Server wasn't able to write to the backup device. Check out for SAN Drive...
July 26, 2009 at 8:48 pm
Pls go through This Article on understanding execution plans.
July 25, 2009 at 9:18 pm
Viewing 15 posts - 616 through 630 (of 1,539 total)