Viewing 15 posts - 5,161 through 5,175 (of 13,465 total)
i believe it's becasue you want to update the alias "o",
try this instead:
CREATE TRIGGER [dbo].[tr_intr_ob_problem_list_]
ON [dbo].[ob_problem_list_]
FOR INSERT
AS
...
July 18, 2012 at 9:50 am
documenting all users and roles, any CLR assemblies, and mail settings for database mail is handy too(even though the mail settings are in msdb)
linked servers and synonyms and custom...
July 18, 2012 at 8:37 am
we are looking for something like this, that anyone on the interwebz can copy and paste so we can build sample queries for you to test with:
CREATE TABLE [dbo].[TAGTABL] (...
July 18, 2012 at 6:48 am
if you've gotta do it via TSQL, instead of stepping out via SMO to get it , i've spent a lot of time refining a few stored procedures to do...
July 18, 2012 at 6:18 am
the function attached to this article is recommended by myself any my peers:
July 18, 2012 at 5:43 am
vijayarani87.s (7/18/2012)
July 18, 2012 at 5:31 am
nope no way to force it.
you can use MAXDOP to limit the parallelism, but there's no MINDOP feature.
if the execution plans were the same, it should use the same paralell...
July 17, 2012 at 11:49 am
i haven't done it since i discovered CLR, but it's possible with bcp; google bcp binary blob for examples, but here's one:
bcp "select document_binary_data from databaseName.dbo.tableName where id...
July 17, 2012 at 11:25 am
ok i know that you can create a table on a linked server using EXECUTE AT, but i think you have to create the table first, and then insert into...
July 17, 2012 at 11:19 am
well here's one way using CLR:
if you were to install Elliot Whitlow's project at http://nclsqlclrfile.codeplex.com/
you could save the binary to disk on the server, and then send the attachment.
--MSPSaveFileImage
-- ...
July 17, 2012 at 9:42 am
santhosh411 (7/17/2012)
Any more suggestions on this
what did you try?
what did not work?
did you upgrade the driver like Gail suggested?
did you try the suggestions i posted,and what were the...
July 17, 2012 at 7:37 am
is the database set to single user?
select * from sys.databases WHERE user_access_desc = 'SINGLE_USER'
if it is, and should not be, you need this command:
ALTER DATABASE [YourDatabaseName] SET MULTI_USER
July 17, 2012 at 6:55 am
for a cross database query, the login needs to be either a user in both databases, or in a group that exists in both databases.
so for a specific example, you...
July 17, 2012 at 6:50 am
tapaskumardm (7/17/2012)
Can you put some more light on above explanation....I will be happy to get some conclusion on this.
Thanks.
not sure what you need, sorry.
run the first query. does it return...
July 17, 2012 at 6:41 am
yes it's possible. SQl lets you restore previous versions of SLQ server, up to three versions behind, i think?( so SQL 2008 can restore SQL 7 or SQL 2000 or...
July 17, 2012 at 6:32 am
Viewing 15 posts - 5,161 through 5,175 (of 13,465 total)