Viewing 15 posts - 43,816 through 43,830 (of 49,571 total)
Index property works just fine there too.
select object_name(id), name from sysindexes where INDEXPROPERTY ( id , name , 'IsClustered') = 1
Use that within an openquery and it'll work. Or you...
October 14, 2008 at 5:30 am
amit (10/14/2008)
There is no transaction logs backup running.
Then why is the DB in full recovery? If you're in full recovery and have no log backups running, the transaction log...
October 14, 2008 at 5:28 am
Then the log file size isn't related to replication. Snapshot doesn't use the tran log. It just copies the entire DB to the subscriber. Since the DB's in simple...
October 14, 2008 at 3:56 am
What recovery model? Do you have log backups?
What type of replication? If transactional, is the log reader agent running properly?
What does the following return for the DB in question?
SELECT name,...
October 14, 2008 at 3:33 am
We do full backups(.bak). I did tried restoring the back and still use the current .df and use the old .ldf, error says files are not associated.
What were you trying...
October 14, 2008 at 3:05 am
How often do you have log backups running?
October 14, 2008 at 3:04 am
There's no DDL triggers on SQL 2000.
Set up a job that checks for new DBs (maybe against a table that stored the ones that you know are there) and...
October 14, 2008 at 2:37 am
select object_name(id), name from sysindexes where INDEXPROPERTY ( id , name , 'IsUnique') = 1
October 14, 2008 at 2:35 am
Carlo Romagnano (10/14/2008)
Also the DISTINCT clause and the GROUP BY perform an implicit ORDER BY for all cols, but "IMPLICIT" is not the rule nor is written in the BOL.
I'm...
October 14, 2008 at 2:31 am
Null comes first because SQL has to do a sort behind the scenes to ensure uniqueness (required by union). Hence there's an implicit Order by 1 ASC on the statement....
October 14, 2008 at 1:59 am
View definition is not a permission level in SQL 2000. It was introduced in 2005 along with the tightening of the metadata security.
In 2000, iirc, everyone could view the definition...
October 14, 2008 at 1:50 am
It's possible, it's not usually a good idea. There is a max permissible recursion level of 32. If you go past that, the trigger will fail and the whole lot...
October 14, 2008 at 1:48 am
There's no such command as ALTER RESOURCES in SQL 2005.
I have this problem where my application is not about to see the disks on my sql server
Could you please explain...
October 14, 2008 at 1:46 am
SET @UpdatedVendorID = #myupd[Vendor ID]
That's not how you get a value from a table in SQL.
SELECT @UpdatedVendorID = [Vendor ID] FROM #myupd
Also, what's going to happen if more...
October 14, 2008 at 1:40 am
Viewing 15 posts - 43,816 through 43,830 (of 49,571 total)