Viewing 15 posts - 1,291 through 1,305 (of 14,953 total)
I'm not sure I understand the question. But, based on what it seems to be asking, can you create a table of years and the value you want for...
July 9, 2012 at 12:08 pm
subbareddy542 (7/5/2012)
when i had run that report it was showing out of memory Exception.
when i was run same query in sql server it was...
July 9, 2012 at 8:44 am
I've never found Soundex() to be all that useful. It won't find that "Richard" (soundex R263) is the same name as "Rick" (soundex R200) or "Dick" (soundex D200). ...
July 5, 2012 at 1:30 pm
Follow the logic of your If Else statements.
First, you test if @Degree is not equal to 0, then you have an Else If that tests the same thing, and another...
July 5, 2012 at 1:11 pm
Whenever I have to modify data in production, I start with "begin transaction" and end with "rollback", run the script, use OUTPUT to check the results, and, when I'm finally...
July 5, 2012 at 10:44 am
Do you get an error message? If so, what is it?
July 5, 2012 at 10:37 am
Can you define a View that queries what's supposed to be in each file? If so, then you can use that to do one BCP operation per View, and...
July 5, 2012 at 6:55 am
See if the data here helps: http://social.msdn.microsoft.com/Forums/en/sqldatabaseengine/thread/f11537a5-8dc9-40a8-b2e4-17874685b074
July 5, 2012 at 6:27 am
Are you using Windows 2000?
If so, this looks applicable: http://support.microsoft.com/kb/839397
July 5, 2012 at 6:24 am
Make a smaller report or get more memory in your server or get a more powerful server.
Why would you want a report with 350,000 rows displayed? Reports are usually...
July 5, 2012 at 6:21 am
Can the database be offline while you move it? If so, that makes it easy. If not, it's not too hard, but it is more complex.
If it can...
July 5, 2012 at 6:19 am
What determines whether a value goes into Column1, Column2, or Column3?
July 5, 2012 at 6:15 am
Automated basics like that are definitely a good place to start.
The most important thing about a database, however, isn't something you can automatically document. The most important thing is...
July 5, 2012 at 6:13 am
That means there are two or more records in the file that have the same primary key value.
To be more specific, we'd need at least to see the table definition.
July 5, 2012 at 6:07 am
Not free, but Redgate (owners of this site) have data and structure comparison tools for SQL Server. Click the "a community service from redgate" bit in the upper-right corner...
July 5, 2012 at 6:05 am
Viewing 15 posts - 1,291 through 1,305 (of 14,953 total)