Viewing 15 posts - 6,106 through 6,120 (of 8,753 total)
Lynn Pettis (2/26/2015)
... Mark one off, 1 day on the calendar to go. 1 day on the calendar to go, 1 day to go, ...
Have a safe journey back home.
😎
February 26, 2015 at 10:28 pm
February 26, 2015 at 11:33 am
In the explanation I used the term unassigned for the lack of a better one as the value of the variable is neither truncated nor is it null.
😎
February 26, 2015 at 4:10 am
ChrisM@Work (2/26/2015)
Jeff Moden (2/25/2015)
Brandie Tarvin (2/25/2015)
February 26, 2015 at 1:30 am
On SQL Server 2008 you can manipulate the image data just like any other data type, consider this example
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.MY_BLOB') IS NOT NULL DROP TABLE dbo.MY_BLOB;
CREATE TABLE...
February 25, 2015 at 11:52 pm
CELKO (2/24/2015)
You should follow ISO-8601 rules for displaying temporal data. This is the second most used ISO standard on Earth (the metric system is #1) and you do not know...
February 24, 2015 at 11:13 pm
RamSteve (2/24/2015)
February 24, 2015 at 10:52 pm
RamSteve (2/24/2015)
I have the following 2 Query's - case when Table has no Identity Column and other with identity Column . I am planning to make it to single...
February 24, 2015 at 12:59 pm
Good work! appreciate it.
😎
February 24, 2015 at 12:41 pm
Steve Jones - SSC Editor (2/24/2015)
This was a 2003 question
It popped up on "Recent Posts" two days ago, thought it was funny:-D
😎
February 24, 2015 at 12:30 pm
KGJ-Dev (2/23/2015)
Here is my confusion, if i use the Sean's suggestion i am in the position to use the same query for two times as i need that output...
February 23, 2015 at 8:31 am
Quick suggestion, use the sys.sql_expression_dependencies system view
😎
SELECT
SD.*
FROM sys.sql_expression_dependencies SD
WHERE SD.referenced_database_name IS NOT NULL
;
February 23, 2015 at 3:23 am
Viewing 15 posts - 6,106 through 6,120 (of 8,753 total)