Viewing 15 posts - 4,231 through 4,245 (of 13,469 total)
for the other direction, when you have the full SSMS and you connect to a lesser isntance, it varies based on what you connect to; i have 2012 developer installed,...
December 12, 2012 at 3:31 pm
CELKO (12/11/2012)
December 12, 2012 at 11:29 am
as suggested: changinbg old style join to new style ansi JOIN..ON:
SELECT
tblTransactions.PO_Number,
tblTransactions.PO_Date,
tblTransactions.Quantity,
tblTransactions.Software_Description,
tblTransactions.Unit_Price,
tblTransactions.SoftwareShortName,
tblTransactions.Transaction_Number,
tblTransactions.Transaction_Type,
tblBulkPurchases.Quantity_Remaining,
...
December 12, 2012 at 9:32 am
Stuart what is the relevance of this WHERE statement coming from?
WHERE ttask.id = 23
are you only capturing queries that match a certain task type?
it looks to me like that would...
December 12, 2012 at 8:30 am
Chris Harshman (12/12/2012)
December 12, 2012 at 8:20 am
MyDoggieJessie (12/11/2012)
What is running under spid 51?
and what does the procedure sp_GetPublicKeyForSMSID do?
that's what's causing the exception i think...or at let the process that does the work.
...every minute sounds...
December 11, 2012 at 2:21 pm
no insults, just help with the logical rules of thumb for procedures and functions:
avoid loops whenever possible: that's cursor, while loops whatever;
like everything in SQL, there's more than one...
December 11, 2012 at 1:33 pm
ok capn; you just need a function that expands the integers that should bebetween tow numbers as a comma delimited list, is that right?
here's both an ITVF and a scalar...
December 11, 2012 at 12:47 pm
mpdillon (12/11/2012)
December 11, 2012 at 11:37 am
bartvdc (12/11/2012)
I'm using it to (re)create tables from within a java app. I just have...
December 11, 2012 at 10:14 am
the better question is do you REALLY need to install another instance in the first place, if you already have SQL installed?
Having a single instance provides a single centralized point...
December 11, 2012 at 7:28 am
I would basically do it the same as anthony; they are already in a table, so not temp table or cursor required.
I kind of like some of the built in...
December 11, 2012 at 5:34 am
the questions too vague for a solid answer; we have to see teh server side code, which is connecting/doing SQL stuff/disconnecting to be able to help at all.
any specific, exact...
December 10, 2012 at 6:03 pm
it's just example WHERE statement for the data; your query which gathers the "right" emails would be very specific to your business logic, and especially the WHERE statement which...
December 10, 2012 at 3:01 pm
a rough example of multiple recipients from a query, unique emails, same attachment:
declare
@isql varchar(2000),
@email varchar(64)
declare c1 cursor for select distinct email FROM...
December 10, 2012 at 2:00 pm
Viewing 15 posts - 4,231 through 4,245 (of 13,469 total)