Viewing 15 posts - 2,161 through 2,175 (of 5,394 total)
You should find the info you're looking for here:
http://msdn.microsoft.com/en-us/library/ms175475.aspx
Hope this helps
Gianluca
January 11, 2012 at 3:45 am
if you're lucky enough, you should find your file somewhere in
C:\Users\[your_user_name]\Documents\SQL Server Management Studio\Backup Files\Solution1
Good luck!
January 11, 2012 at 3:42 am
I guess the whole problem is the ISNUMERIC function. It returns 1 for \r and :
SELECT ISNUMERIC(char(10)), ISNUMERIC(char(13))
See this article by Jeff Moden for alternatives:
http://www.sqlservercentral.com/articles/IsNumeric/71512/
Hope this helps
Gianluca
January 11, 2012 at 3:38 am
Other possible options:
1) Snapshot replication
2) Transactional replication
In both cases you could set up row and column filters and replicate just what you really need.
January 11, 2012 at 3:33 am
You're welcome.
Glad I could help.
January 11, 2012 at 3:18 am
SQL Kiwi (1/10/2012)
SQLRNNR (1/10/2012)
I am curious what you guys think makes 2008 AM worse than 2005 AMThe design, implementation, and performance mostly 😀
+1
Performance is my major concern.
Also, usability (is...
January 11, 2012 at 3:12 am
You're trying to make your PIVOT dynamic, right?
Then just use dynamic SQL. In your example, the variable that determines the number and content of columns is the year: query distinct...
January 10, 2012 at 11:30 am
I knew you wouldn't have liked my reply...
January 10, 2012 at 11:27 am
SQL Kiwi (1/10/2012)
Gianluca Sartori (1/10/2012)
Activity what? 😀Well exactly. The primary motivation for Adam writing WIA was the awfulness that is Activity Monitor.
Don't mistreat it that way: it was almost...
January 10, 2012 at 11:22 am
Check:
1. default database for this login
2. logon triggers
What does the logon error say exactly?
January 10, 2012 at 11:06 am
SQL Kiwi (1/10/2012)
kwoznica (1/10/2012)
🙂 Ok ok....I'll read through it.
Please do. It can do everything you have asked easily, you just need to invest a little time trying it. ...
January 10, 2012 at 11:04 am
Would be redundant IMHO.
Does it work with IPAll blanked? Then, leave it blank.
January 10, 2012 at 11:03 am
I'm using wordpress.com and there you just need to surround your code with
[sourcecode language=sql]
SELECT SomeColumn FROM SomeTable
[/sourcecode]
and everything displays just fine, with copy,print,view source and help buttons.
You can see...
January 10, 2012 at 10:01 am
Don't enclose the user name in square brackets:
IF NOT EXISTS(SELECT principal_id FROM sys.database_principals WHERE name = 'mylogin')
BEGIN
CREATE USER [mylogin] FOR LOGIN [mylogin]
END
January 10, 2012 at 8:19 am
Ninja's_RGR'us (1/10/2012)
Gianluca Sartori (1/10/2012)
GilaMonster (1/10/2012)
Gianluca Sartori (1/10/2012)
Even worse: http://141microseconds.wordpress.com/2011/09/24/faster-than-light/.Oh my....
Remember this next time you complain about your politicians. 😉
how many time do you want me to top this story with...
January 10, 2012 at 7:08 am
Viewing 15 posts - 2,161 through 2,175 (of 5,394 total)