Viewing 15 posts - 11,251 through 11,265 (of 15,381 total)
Is this a blog post or a request for help?
Your splitter is not the most optimal. Take a look at the link in my signature for splitting strings.
That aside...
July 23, 2012 at 12:59 pm
Not sure about Lynn but my crystal ball is still broken. We can't see your screen, we have no idea how you want to map these columns, we still don't...
July 23, 2012 at 11:59 am
Duplicate post. Please direct all replies here. http://www.sqlservercentral.com/Forums/Topic1333964-150-1.aspx
July 23, 2012 at 11:39 am
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
Viewing 15 posts - 11,251 through 11,265 (of 15,381 total)