Viewing 15 posts - 121 through 135 (of 212 total)
Is the Windows Firewall turned on for the client?
July 12, 2011 at 11:50 am
Have you ruled out any network issues? Can you ping the server's IP address from the 64-bit client?
July 12, 2011 at 11:35 am
You could use 2 queries with a UNION. First write the query for the 'USA' results, then UNION it with a second query that has criteria excluding the 'USA'...
July 7, 2011 at 9:18 pm
Michael Valentine Jones (6/6/2011)
AND (SCHEMA_NAME(schema_id) = PARSENAME(@tableName,2) or PARSENAME(@tableName,2) is null)
I like yours better 🙂
June 6, 2011 at 4:28 pm
tshad (6/6/2011)
If @tablename = 'Roles', this will return nothing. I thought about using a Case statement but not sure how...
June 6, 2011 at 4:25 pm
opc.three (6/6/2011)
It sounds like you're headed into dynamic-sql-hell :sick:
Are you confident in your design? If not, if you want to share a bit more about what you're...
June 6, 2011 at 3:25 pm
tshad (6/6/2011)
SELECT @IsIdentity = sys.columns.is_identity
FROM sys.columns
JOIN sys.objects
...
June 6, 2011 at 3:22 pm
Not really sure what you are asking. If you do not specify the server, database, or schema parts of an object's 4-part identifier, SQL Server will use the defaults....
June 6, 2011 at 2:18 pm
I answered him; what have you done? 😉
March 21, 2011 at 12:01 pm
Hi, if you haven't found the answer yet, it was addressed here: http://www.sqlservercentral.com/Forums/Topic493874-146-1.aspx
The default 'Unrestricted' log size IS 2TB in SQL Server 2005.
March 21, 2011 at 10:28 am
Pink123 (2/24/2011)
February 24, 2011 at 11:38 am
Pink123 (2/24/2011)
'if exists 'doesnt return anything which implies that select statement dint fetch any rows ,but If i execute the select statement it does fetches record.
Then it sounds like...
February 24, 2011 at 9:32 am
Pink123 (2/24/2011)
if exist() for job B
If I seperately execute the query I do get results?
I am very confused as...
February 24, 2011 at 8:53 am
That scenario won't cause deadlocking or any other issue, AFAIK. READ COMMITTED is the default isolation level in SQL Server, which will only allow reads on committed records -...
February 24, 2011 at 7:36 am
Does eliminating the table prefixes on the column names make any difference?
February 23, 2011 at 1:32 pm
Viewing 15 posts - 121 through 135 (of 212 total)