Viewing 15 posts - 1,066 through 1,080 (of 1,346 total)
I'm confused,
What do you mean by the decimal separator?
August 23, 2005 at 9:51 am
to My knowledge, sql does not maintain record of objects being changed.
you would need to use some third party application to monitor changes.
August 23, 2005 at 9:45 am
I'm not sure what your trying to find by saying "Which one are we using the most."
Which application using which db is being used the most?
You can, and probably should...
August 23, 2005 at 9:38 am
How can you tell your string is getting cut off?
is sql returning an error when you execute.
Please post your code, and someone can point out the error in 2 seconds...
August 23, 2005 at 9:25 am
I do not believe there is.
But in general I do not format data out of the database.
Formatting should be the job of the presentation layer.
If you were to format the...
August 22, 2005 at 9:40 am
what data type are you using in the table?
and sometimes when using EM the dates show funny,
use Query analyzer to validate your dates
August 19, 2005 at 9:28 am
Can you elaborate on sync'd?
Is it the same table definition, with most the same data, just few rows are different?
Each table at each location holds completely different rows? Will you...
August 19, 2005 at 9:12 am
Yes there is a reason you canNOT do this.
When log shipping a database is in recovery mode.
When in recoverymode connections can be established for read only purposes, but if...
August 18, 2005 at 4:54 pm
Err wait, Nevermind. Cant Read
Edit:
If you want to do something like this you are adding a ton of overhead onto the sql server. and if you allow client side sorting...
August 18, 2005 at 3:17 pm
It looks like your application may be a little more complex than you can explain in a post.
Hence it will be difficult for us to provide you with an answer.
It...
August 18, 2005 at 3:00 pm
Creating an application role enables you to set security context at 1 point for an application and not for each individual user using the app.
From Books Online
"The security system in...
August 18, 2005 at 2:51 pm
Is your log full because you are out of disk space, or because your log file is not set to autogrow?
If it is not set to autogrow, then just increase...
August 17, 2005 at 4:57 pm
That is something you'll have to deal with when you get a large string back from sql.
SqlServer outputs data in 8k chunks. So a new chunk is starting after the...
August 17, 2005 at 11:11 am
If you are using T-SQL then your query is not valid.
iif(isEmpty(fieldName), 0, fieldName)
IsEmpty is not a valid function, and IIF is not valid for an if statement
What are you trying...
August 17, 2005 at 10:20 am
Here's a link from books online that discusses partitioning
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/optimsql/cm_fedserv_27eb.asp
I don't think that partitioning a table with 1.3 million rows is worth it.
If the table is going to continue to...
August 17, 2005 at 10:07 am
Viewing 15 posts - 1,066 through 1,080 (of 1,346 total)