Viewing 15 posts - 2,086 through 2,100 (of 7,168 total)
PiMané (2/7/2013)
February 7, 2013 at 3:53 pm
PiMané (2/7/2013)
February 7, 2013 at 3:14 pm
NineIron (2/7/2013)
The whole point of me creating this...
February 7, 2013 at 11:56 am
Here is a working version of your Scalar UDF:
CREATE FUNCTION dbo.ufnCHFPatients
(
@StartDate DATETIME,
@EndDate DATETIME
...
February 7, 2013 at 11:00 am
ScottPletcher (2/7/2013)
For example:
...
from dbo.AbstractData a
inner join dbo.AbsDrgDiagnoses...
February 7, 2013 at 10:37 am
worker bee (2/7/2013)
worker bee (2/7/2013)
opc.three (2/7/2013)
worker bee (2/7/2013)
dbo (database role) gives them access to that one and only one database.
dbo is not a Database Role it is a Database User:
February 7, 2013 at 9:44 am
ChrisM@Work (2/7/2013)
USE tempdb;
IF OBJECT_ID(N'tempdb..#CLIENT_IDENTIFIER_TYPE') IS...
February 7, 2013 at 9:30 am
worker bee (2/7/2013)
dbo (database role) gives them access to that one and only one database.
dbo is not a Database Role it is a Database User:
February 7, 2013 at 9:24 am
We do not have access to your environment. If you would provide test tables (CREATE TABLE statements), test data (INSERT statements) and your expected results based on that test data...
February 7, 2013 at 7:59 am
Sorry, forgot the second part of your question:
SELECT name,
is_disabled,
LOGINPROPERTY(name, 'IsLocked') AS is_locked
FROM ...
February 7, 2013 at 7:56 am
syslogins is deprecated as of SQL 2005.
Mapping SQL Server 2000 System Tables to SQL Server 2005 System Views
How about this:
SELECT *
FROM sys.server_principals
WHERE is_disabled =...
February 7, 2013 at 7:53 am
It sounds like you are planning to implement something in SSIS already provided in SQL Server. Have you looked into SQL Server Replication?
February 7, 2013 at 7:48 am
I have had to deal with that in the past. They were flat files coming from an AS/400. My requirements said to replace NUL with a space (ASCII 32). I...
February 7, 2013 at 7:46 am
Recompilation would not take execution time from .05s to 30s unless there are some hellaciously complex queries in the proc. Can you post the code? sanitized to protect the guilty...
February 7, 2013 at 7:42 am
For the record it's a CASE expression not a CASE statement.
USE tempdb;
IF OBJECT_ID(N'tempdb..#CLIENT_IDENTIFIER_TYPE') IS NOT NULL
DROP TABLE #CLIENT_IDENTIFIER_TYPE;
GO
CREATE TABLE #CLIENT_IDENTIFIER_TYPE (Code CHAR(3));
INSERT INTO #CLIENT_IDENTIFIER_TYPE
...
February 7, 2013 at 7:37 am
Viewing 15 posts - 2,086 through 2,100 (of 7,168 total)