Viewing 15 posts - 3,496 through 3,510 (of 5,356 total)
Should not be too difficult if there is always a blank as delimiter.
http://www.sqlservercentral.com/forum/link.asp?TOPIC_ID=17517 might give you some ideas
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 12, 2003 at 8:46 am
Can you post some sample data?
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 12, 2003 at 8:18 am
Actually when you look at the code of this procedure you will know why it is undocumented, but I agree that you won't get a 'shorter' solution to type. --
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 12, 2003 at 6:18 am
Just to add one more ![]()
DECLARE @base_date DATETIME
DECLARE @end_date DATETIME
DECLARE @offSET int
SET @base_date='01.02.2004'
SET @end_date='31.12.2004'
SET @offSET=1
SELECT * FROM mytest
SELECT
person,
birthday,
DATEADD(yy,@offSET,CAST(CAST(day(birthday)AS CHAR(2))+'.'+CAST(month(birthday)AS CHAR(2))+'.'+CAST(year(getdate())AS CHAR(4))AS DATETIME)) AS [Next Birthday],
FLOOR(CAST(DATEADD(yy,@offSET,CAST(CAST(day(birthday)AS...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 12, 2003 at 4:05 am
This might help
http://www.sqlservercentral.com/forum/link.asp?TOPIC_ID=18119
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 12, 2003 at 3:38 am
Since you can write your t-sql code in one line or each word in a new line and the used approach may vary from developer to developer in your organization,...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 12, 2003 at 2:13 am
hm...I'll ask my network admin ![]()
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 12, 2003 at 1:55 am
Just a couple of thoughts.
Whether stored procedures are precompiled or not is not relevant.
It *might* be that the first execution of a procedure takes a little bit longer than...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 12, 2003 at 1:49 am
Well, at least your results are consistent to what you have noticed. Same space allocated, but roughly half the space used.
All I would do has been mentioned above, and I...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 12, 2003 at 1:09 am
I really enjoyed it, although I'm inclined to mention that some people out there who are ANSI SQL hardliners would now argue:
quote:
SQL...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 11, 2003 at 8:27 am
I suggest this onr for reading http://www.algonet.se/~sommar/arrays-in-sql.html
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 11, 2003 at 5:44 am
quote:
The 'ordinary' user should not be able to change the datbase structure. I think that would be a failure. That's why I...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 11, 2003 at 5:03 am
You mean you want to have all db's structure synchronized?
Do you change your database objects via EM?
If so, you should get in touch with the Query Analyzer. The scripts you...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 11, 2003 at 4:44 am
quote:
I was blamed for crossposting last time, so if this is not the right group - please help me anyway.
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 11, 2003 at 3:42 am
not really successful. The called url doesn't change and that's what is watched
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 11, 2003 at 1:54 am
Viewing 15 posts - 3,496 through 3,510 (of 5,356 total)