Viewing 15 posts - 661 through 675 (of 1,109 total)
David (11/12/2007)
The jobs are all other data related; I am distinguishing them from all other jobs by giving them a specific job category type. I did have a very,...
November 12, 2007 at 8:24 am
Have a look at http://msdn2.microsoft.com/en-us/library/ms178067.aspx and http://msdn2.microsoft.com/en-us/library/ms191303.aspx
Regards,
Andras
November 12, 2007 at 8:15 am
From sql this is not a very simple task. We use a parser to analyze store procedure text and then determine the referenced objects like stored procedures. But this is...
November 12, 2007 at 8:10 am
One way of doing this is to use the Service Broker in SQL Server 2005. Set up a queue in it, and a stored procedure on this queue. (see create...
November 12, 2007 at 4:20 am
noname (11/12/2007)
i want to check if there is a table named 'Table1' in SqlCE file on my device.how can i check it?
thanx...
The compact edition supports the information_schema, so you can...
November 12, 2007 at 4:15 am
Roy's link is the solution that you could use for the above. Just to include the solution here too:
On 2000 when you create the stored procedure in the master...
November 12, 2007 at 3:48 am
Yes you can do this for transactional and snapshot replication, but not for merge. You can read more about the cross version support of replications in Books Online in the...
November 12, 2007 at 3:24 am
A differential backup saves only the pages since the last full backup. If many pages have changed you can get a very large differential backup. If there was little user...
November 12, 2007 at 3:09 am
do a self join
select t1.key, t1.name, t2.name from mytable t1 join mytable t2 on t1.key=t2.key
where t1.name<t2.name -- to avoid duplicates
(the < is used instead of != to avoid duplicates)
Regards,
...
November 8, 2007 at 5:22 am
Is there such a reason?
you may want to read http://www.sqlservercentral.com/articles/Miscellaneous/worstpracticesnotusingprimarykeysandclusteredindex/488/
Regards,
Andras
November 8, 2007 at 5:17 am
You can do this if you set the database to trustworthy and the assembly to unsafe:
ALTER DATABASE myDatabase SET TRUSTWORTHY ON
alter/create assembly .... WITH PERMISSION_SET = UNSAFE
(note that both of...
November 6, 2007 at 8:50 am
vbourdages (11/6/2007)
So the Execute as 'dbo' don't work like it should... do you have an idea...
November 6, 2007 at 8:41 am
Your XML sample did not make it. (you need to escape the < with < )
Concerning accessing attributes you can do this with the @ sign like:
OPENXML(@iDoc, '//a:category', 1)
WITH (
...
November 5, 2007 at 11:52 pm
Indexed views will persist the result of the view (as if it were a table). Assuming that the archive table is large, and the view is literally just the union...
November 2, 2007 at 9:30 am
Databases work with sets/bags. There is no guarantee that the order in which you insert data into a table is the order in which you will get it back. What...
November 2, 2007 at 4:55 am
Viewing 15 posts - 661 through 675 (of 1,109 total)