Viewing 15 posts - 11,251 through 11,265 (of 15,376 total)
Looking closer at your issue it seems you need a running total. Take a look at this article. http://www.sqlservercentral.com/articles/T-SQL/68467/%5B/url%5D
It is a great article and a must read on the topic.
July 23, 2012 at 11:32 am
Hi and welcome to SSC. We are willing and able to help but first you have to provide enough information for somebody to be able to help. You need to...
July 23, 2012 at 11:30 am
That will work but it seems a lot easier to have the developers install SQL on their local. Then they can connect to the sql server from their own desktop....
July 23, 2012 at 10:38 am
Daxesh Patel (7/23/2012)
Sean Lange (7/22/2012)
lokeshvij (7/22/2012)
Another tip:Select your table in MSMS and then press Ctrl+F1
Check the result set with FK'S 😉
That is a super easy way to find foreign keys...
July 23, 2012 at 10:21 am
pujain (7/23/2012)
let me ask in a different way.
suppose all three express/standard/developer fits application requirment
and we developed a application which keeps/calculate salary records of all the employee...
July 23, 2012 at 9:17 am
What Anthony is saying that is that we can't really help you because what you posted is not a complete question. We need ddl (create table statement), sample data (insert...
July 23, 2012 at 9:13 am
pujain (7/23/2012)
the vendore has now upgraded the tool so that...
July 23, 2012 at 9:06 am
What does the vendor requirements say? There is no chance anybody here can answer that question. We don't know what this 3rd party system you are buying does.
July 23, 2012 at 8:55 am
anthony.green (7/23/2012)
Why nolock? Do you know the consequences of using that hint?Also if you need to use nolock make sure its WITH (NOLOCK) and not just (NOLOCK)
Maybe they like...
July 23, 2012 at 8:44 am
If you want/need a more detailed response you will need to provide a more detailed post. Take a look at the first link in my signature about best practices when...
July 23, 2012 at 8:40 am
deepzzzz (7/23/2012)
SCHEMA_NAME(f.SCHEMA_ID) SchemaName,
OBJECT_NAME(f.parent_object_id) AS TableName,
COL_NAME(fc.parent_object_id,fc.parent_column_id) AS ColumnName,
SCHEMA_NAME(o.SCHEMA_ID) ReferenceSchemaName,
OBJECT_NAME (f.referenced_object_id) AS ReferenceTableName,
COL_NAME(fc.referenced_object_id,fc.referenced_column_id) AS ReferenceColumnName
FROM sys.foreign_keys AS f
INNER JOIN sys.foreign_key_columns AS fc ON f.OBJECT_ID = fc.constraint_object_id
INNER JOIN sys.objects AS...
July 23, 2012 at 7:42 am
lokeshvij (7/22/2012)
Another tip:Select your table in MSMS and then press Ctrl+F1
Check the result set with FK'S 😉
That is a super easy way to find foreign keys defined on the current...
July 22, 2012 at 11:57 am
Or to provide you the answer with as much detail as you provided. this is actually quite simple.
Download the wsdl for the webservice you want to call.
Build the wrapper around...
July 20, 2012 at 11:04 pm
You failed to actually ask a question that can be answered. You did not provide anywhere near enough information. The only possible responses are people wondering why you are asking...
July 20, 2012 at 11:02 pm
GilaMonster (7/20/2012)
Nested transactions are a lie. They don't really exist.
Sure they do. Just like Bigfoot and the Loch Ness Monster. 😀
July 20, 2012 at 10:45 pm
Viewing 15 posts - 11,251 through 11,265 (of 15,376 total)