Viewing 15 posts - 1,021 through 1,035 (of 1,156 total)
This is a quote from the isolation link I sent about Read-Committed Isolation:
In SQL Server 2005, you can also minimize locking contention while protecting transactions from dirty reads of uncommitted...
December 14, 2007 at 8:57 am
If you mdf is growing large, it is because there is lots of data being inserted. You have confirmed that the growth is set to 1mb unrestricted. This...
December 14, 2007 at 8:13 am
The developers have to make the change. You do not, unless you are also developing the application. Have them change the config file to connect using the login...
December 14, 2007 at 8:08 am
What programming language is the web developed in ASP.NET? The developers have to connect to the database via a connection string. For .NET applications the connection information is...
December 14, 2007 at 8:05 am
Andras,
Cool solution, I did not even know about this feature. It seems like managing objects with synonyms can become confusing and messy, if you do not know that the...
December 14, 2007 at 8:01 am
No, problem. I am glad everything worked out.
Happy holidays.
December 14, 2007 at 7:48 am
To the best of my knowledge this cannot be done without dynamic T-SQL. I would love for someone to prove me wrong though 😉
December 14, 2007 at 7:47 am
tthomas,
sorry about that I left some extra ")" in the last few case statements. Change
CASE WHEN visit_type = 1 THEN
visitor_id
END))
TO
CASE WHEN visit_type = 1...
December 14, 2007 at 7:23 am
Go the SQL configuration manager. Confirm that SQL Server and SQL Server Browser are running. From here you can also click on the Network configuration tab and enable...
December 14, 2007 at 7:02 am
SELECT
LEFT(
RIGHT(PK,Len(PK) - charindex('=',PK)),
LEN(RIGHT(PK,Len(PK) - charindex('=',PK)))
-1)
December 13, 2007 at 10:53 pm
hmm. Jeff it looks like you beat me to the punch.
It's based off the same principal but is much more simplistic. 😉
December 13, 2007 at 10:28 pm
This should do the trick.
SELECT
SUBSTRING(
CONVERT(varchar,
CAST(COUNT(DISTINCT
CASE WHEN visit_type = 0 THEN
visitor_id
END) AS money),1
...
December 13, 2007 at 10:25 pm
It is difficult to determine the exact cause for the dead lock without knowing the data that is being passed in.
I have created a small scale sample with...
December 13, 2007 at 9:45 pm
I have not had any luck with the varbinary bcp, so the way I see it you have two options:
1) If you choose to use file paths in the database,...
December 12, 2007 at 11:54 am
I have created a sample image and recieved the same error as you. I did notice that the binary is different between the bcp output image and the original. ...
December 12, 2007 at 11:43 am
Viewing 15 posts - 1,021 through 1,035 (of 1,156 total)